有没有办法改变或摆脱 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]
}]
});
});
我找不到任何选项可以更改为灰色圆圈的颜色或选择不进行掠夺。
请有任何想法