如何使y轴标题与当前所选系列相同?
yAxis: [{
min: 0,
title: {
text: 'Hits', <-- this value should be based on selected series name
},
labels: {
formatter: function () {
return this.value;
},
style: {
color: '#4572A7'
}
}
}]
答案 0 :(得分:2)
这样的事情应该有效。当单击系列时,它将y轴的标题设置为系列的名称。 jsfiddle here
plotOptions: {
series: {
events: {
click: function() {
this.chart.yAxis[0].setTitle({text: this.name});
}
}
}
}