我想在柱形图的工具提示中获取highCharts数据的pointRange值。
这就是我的数据看起来......
series: [{
name:'Segment1',
type: 'column',
data: [{"x":0,"y":12000}],
color: '#8B0000',
pointRange: 8
},
{
name:'Segment2',
type: 'column',
data: [{"x":10,"y":11000}],
color: '#FFA500',
pointRange: 12
},...
这是我正在做的工具提示格式化......
tooltip: {
formatter: function () {
return '<b>' + this.series.name + '</b>'+ '<br>' + 'Height' + ': ' + this.y
+ '<br>'+ 'Width ' + this.series.pointRange; },
但使用this.series.pointRange的值在工具提示中显示为“未分解”。