我正在使用highcharts并制作了这个简单的折线图。当我关闭图例上某人的视图时,该名称仍显示为折线图上的线条标签。我怎么能把它关掉?我附上了问题的图片。我只希望威尔逊出演。
这是我的代码:
Highcharts.chart('chart1', {
chart: {
type: 'line'
},
title: {
text: 'Hours vs Month (' + months[0] + "-" + months[5] + ")"
},
xAxis: {
categories: months
},
yAxis: {
title: {
text: 'Hours'
}
},
tooltip: {
valueSuffix: ' hours'
},
credits: {
enabled: false
},
plotOptions: {
series: {
marker: {
enabled: true
}
},
line: {
dataLabels: {
enabled: false
},
enableMouseTracking: true
}
},
series :somedata
});