是否有办法改变或摆脱HighCharts的Gauge图表中的灰色圆圈?
$(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。
请提出任何想法