我根据http://www.highcharts.com/demo/column-stacked
创建了一个图表当鼠标悬停在某列上时,它会显示悬停的y轴和总值的值。
我希望工具提示显示所有3 y轴的值及其各自的颜色,而不管悬停的y轴。
我知道必须在以下代码中完成,但如何从中访问其他y轴?是否可以执行{series[0].point.y}
之类的操作?我没有尝试过任何工作。
tooltip: {
headerFormat: '<b>{point.x}</b><br/>',
pointFormat: '{series.name}: {point.y}<br/>Total: {point.stackTotal}'
},
答案 0 :(得分:4)
使用选项
tooltip: {
shared:true
},