gauge highcharts:外圈颜色

时间:2013-05-18 00:37:49

标签: highcharts geometry gauge

是否有办法改变或摆脱HighCharts的Gauge图表中的灰色圆圈?

Look this Gauge pls

$(function () {
  $('#container').highcharts({
    chart: {
        type: 'gauge',
        backgroundColor:'rgba(255, 255, 255, 0.1)',
        plotBorderWidth: 0,
        plotShadow: false
    },      
    title: {text: ''},      
    pane: {background: [{backgroundColor: 'transparent'}]},
    yAxis: {
        min: 0,
        max: 200,
        lineColor: 'transparent',
        minorTickColor: '#FF0000',

        tickColor: '#FF0000',
        labels: {
            step: 2,
            rotation: 'auto'
        },
    },  
    series: [{
        name: 'Speed',
        data: [80]
    }]      
  });
});

我找不到任何选项来更改为灰色圆圈的颜色或选择否为plooted。

请提出任何想法

1 个答案:

答案 0 :(得分:3)

使用pane.background.borderWidth属性:http://jsfiddle.net/xMjqp/2/

来自文档:http://api.highcharts.com/highcharts#pane.background