是否可以将鼠标悬停在气泡图中的气泡上,并显示不同的数据而不是数据点(x轴和y轴数据)?Picture of current bubble chartRep names in a single lineRep names list
dly7yett1#
是的,如果你想有条件地显示一些其他信息,你可以用tooltip.pointFormat或tooltip.pointFormatter()来做。对于给定系列的点,您不仅可以输入基本信息(如x、y、z、名称和一些默认信息),还可以输入自定义信息:
tooltip.pointFormat
tooltip.pointFormatter()
tooltip: { //pointFormat: '<div>{point.custom}</div>', pointFormatter: function() { const point = this; return point.custom ? point.custom : 'z: '+point.z; } }, series: [{ data: [{ x: 2, y: 4, z: 8, custom: 'Custom tooltip info' }] }]
Demo:https://jsfiddle.net/BlackLabel/vdf9rnu6/API:https://api.highcharts.com/highcharts/tooltip.pointFormat
https://api.highcharts.com/highcharts/tooltip.pointFormatterhttps://api.highcharts.com/highcharts/series.bubble.data
1条答案
按热度按时间dly7yett1#
是的,如果你想有条件地显示一些其他信息,你可以用
tooltip.pointFormat
或tooltip.pointFormatter()
来做。对于给定系列的点,您不仅可以输入基本信息(如x、y、z、名称和一些默认信息),还可以输入自定义信息:Demo:https://jsfiddle.net/BlackLabel/vdf9rnu6/
API:https://api.highcharts.com/highcharts/tooltip.pointFormat
https://api.highcharts.com/highcharts/tooltip.pointFormatter
https://api.highcharts.com/highcharts/series.bubble.data