我在process of creating a Bubble Chart with Highstock。我想知道是否可以将系列名称的数据更改为以下内容:
data: [{name:'any words 1',x:Date.UTC(1970, 9, 27), y:2.07, z:1},{name:'any words
2',x:Date.UTC(1970, 9, 27), y:1.03, z:1}]}
我想使用this.point.name
制作单独的工具提示,以显示一些其他信息。
答案 0 :(得分:0)
是的,你可以,只有你需要的是通过point.format或tooltip.formatter在工具提示中提取这些信息。
tooltip:{
pointFormat: '{series.name}: <b>{point.y}</b><br/> {point.name}'
},