gpt4 book ai didi

javascript - HighCharts:获取 Y 和 X 值

转载 作者:行者123 更新时间:2023-12-03 00:39:02 25 4
gpt4 key购买 nike

我使用 Highcharts 创建了一个“基本折线”图表,其中包含 15 个系列或图表。

如果我使用“plotOptions”尝试显示 Y 和 X 值,我只会得到一系列值(Y 或 X)。这取决于线点:在线内我得到 Y,在线外我只得到 X。

plotOptions: {
series: {
cursor: 'pointer',
point: {
events: {
click: function () {
//OpenDetails(this.category, this.y);
alert('Value1:'+this.category + ', Value2: ' +
this.y + ', Value:' + this.name);
}
}
}
}
}

我在这里找到了帮助,但它仅适用于 1 系列值(X 或 Y): http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-events-click/

也许解决方案是在系列中内置plotOptions,但我没有管理它。

最佳答案

您应该使用series.point.events,而不是series.events:

plotOptions: {
series: {
cursor: 'pointer',
point: {
events: {
click: function(event) {
alert('Value1:' + this.category + ', Value2: ' +
this.y + ', Value:' + this.series.name)
}
}
}
}
}

现场演示:http://jsfiddle.net/BlackLabel/eb9y1noj/

API:https://api.highcharts.com/highcharts/plotOptions.series.point.events.click

关于javascript - HighCharts:获取 Y 和 X 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53538008/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com