gpt4 book ai didi

javascript - Highcharts 3D 散点不在工具提示中显示名称

转载 作者:行者123 更新时间:2023-11-30 17:07:03 26 4
gpt4 key购买 nike

我修改了找到的例子here将名称添加到数据点,但工具提示未显示名称。它显示系列名称但不显示点名称:

 ---------
|o Points |
|x: 2 |
|y: -6 |
|z: 2 |
---------

这是我的 jsFiddle .我的系列数据定义为:

series: [{
name: "Points",
data: [{
color:"rgb(0,0,0)",
x:5,
y:-5,
z:9,
name:"Point 1"
},{
color:"rgb(0,0,0)",
x:2,
y:-6,
z:2,
name:"Point 2"
},{
color:"rgb(0,0,0)",
x:7,
y:6,
z:8,
name:"Point 3"
}]
}]

我认为它应该在工具提示中显示点名称,如 this 所示。 2D 示例。这是错误还是我做错了什么?

Highcharts JS v4.0.4

最佳答案

你必须自己定义tooltip formatter :

tooltip: {
formatter: function(chart) {
var p = this.point;
return p.name + '<br>' +
p.x + ', ' + p.y + ', ' + p.z;
}
}

这是一个工作示例:http://jsfiddle.net/aLLj8j0m/2/

关于javascript - Highcharts 3D 散点不在工具提示中显示名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27790880/

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