2013-05-18 69 views
2

HighCharts有沒有方法改變或擺脫Gauge圖表中的灰色圓圈?gauge highcharts:外圓顏色

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。

任何想法,請

回答