2013-05-18 2 views
2

HighCharts에서 게이지 차트를 변경하거나 회색 원을 제거하는 방법이 있습니까?계기판 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에 더를 선택할 수있는 옵션을 찾을 수 없습니다.

모든 아이디어를

을 기쁘게

답변