我有一个带有范围选择器的Highcharts图。我不时看到这个问题
我打算按" 2w"而" 1m"之前按下了按钮。但媒体不知何故没有完成。结果如图所示。 " 1m"按钮仍按下," 2w"按钮已经突出显示。这是不希望的。如何解决这个问题?谢谢!
这是我的代码
rangeSelector:{
enabled:true,
inputEnabled:false,
buttonSpacing: 1,
buttonTheme: {
fill: 'none',
stroke: 'none',
r: 5,
style: {
color: "black",
fontSize: '13px',
}
},
labelStyle: {
color: '#a8a8a8',
fontSize: '10px'
},
buttons: [{
type: 'week',
count: 2,
text: '2w'
}, {
type: 'month',
count: 1,
text: '1m'
}, {
type: 'month',
count: 6,
text: '6m'
}, {
type: 'ytd',
text: 'YTD'
}, {
type: 'year',
count: 1,
text: '1y'
}]
}