我试图根据在Highcharts图中选择的内容获取序列名称,但是标签不显示序列名称。
这是我一直在处理的代码的链接:http://jsfiddle.net/ktjno528/
$(function () {
// create the chart
$('#container').highcharts({
chart: {
events: {
redraw: function () {
var label = this.renderer.label(this.series.name, 100, 120)
.attr({
fill: Highcharts.getOptions().colors[0],
padding: 10,
r: 5,
zIndex: 8
})
.css({
color: '#FFFFFF'
})
.add();
setTimeout(function () {
label.fadeOut();
}, 1000);
}
}
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{name:'S1',
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
// activate the button
$('#button').click(function () {
var chart = $('#container').highcharts();
chart.addSeries({name:'S2',
data: [216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5]
});
$('#button').unbind('click');
});
});
最佳答案
您正在尝试访问this.series.name
,它不返回任何内容,因为this.series
是一系列数组。因此,您可能要使用this.series[0].name
或this.series[1].name
取决于要显示的系列名称。
见updated JSFiddle here。
关于javascript - 如何根据Highcharts中的选择获取系列名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31930116/