0

我正在尝试在 android webview 中加载 highchart js,它工作正常!

我的 webview 在 LinearLayout 中,我希望两个布局的背景颜色相同。但是我的图表周围有一个我无法删除的不受欢迎的白色边框。

我在 js 文件中设置了图表背景颜色,在 xml 文件中设置了线性布局背景颜色。我试图为 webview 设置橙色背景颜色,但我看不到它。我还尝试更改图表的边框颜色和边框大小属性,但问题保持不变。我不知道现在该怎么办......

我的布局是这样的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#d6d7d4"
tools:context=".MainActivity" >

<WebView
    android:id="@+id/chartView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/holo_orange_dark"/>

<ListView 
    android:id="@+id/alarmList"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

我的js是这样的:

$(document).ready(function() {
var chart1 = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        backgroundColor: '#d6d7d4',

        zoomType: 'x'
    },
    xAxis: {
        type: 'datetime',
        dateTimeLabelFormats: {
            year: '%Y'
        }
    },
    yAxis: {
        title: {
            text: 'MW'
        },
        max: 500, 
        plotBands: [{
            from: 0,
            to: 100,
            color: 'rgba(247, 247, 247, 0.3)'
        }, { 
            from: 100,
            to: 200,
            color: 'rgba(215, 216, 212, 0.3)'
        }, { // Light breeze
            from: 200,
            to: 300,
            color: 'rgba(247, 247, 247, 0.3)'
        }, { // Light breeze
            from: 300,
            to: 400,
            color: 'rgba(215, 216, 212, 0.3)'
        },{
            from: 400,
            to: 500,
            color: 'rgba(247, 247, 247, 0.3)'
        }]
    },
    title: {
        text: ''
    },
    subtitle: {
        text: ''
    },
    tooltip: {
        formatter: function() {
            return '<b>'+ this.series.name +'</b><br/>'+
            Highcharts.dateFormat('%Y', this.x) +': '+ this.y +' %';
        },
        valueDecimals: 1,
        valueSuffix: ' %'
    },
    series: 
    [{
        data: [[Date.UTC(2005, 1, 1),0],
            [Date.UTC(2008, 1, 1),10],
            [Date.UTC(2008, 1, 1),20],
            [Date.UTC(2010, 10, 1),30],
            [Date.UTC(2010, 10, 1),40],
            [Date.UTC(2013, 7, 1),50],
            [Date.UTC(2013, 7, 1),80]],
        type: 'line',
        color: "#504AA9"
    }]
});

});

还有我的安卓屏幕截图:

在此处输入图像描述

4

1 回答 1

3

设置网页的背景可能会摆脱它。

http://jsfiddle.net/48wEc/

<body style="background-color:#d6d7d4;"> </body>

如果不是,那么它一定是你的 webview 使那个边界以某种方式。

于 2013-07-19T17:22:13.370 回答