0

我想在柱形图的工具提示上获取 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 的值在工具提示中以“未定义”的形式出现。

4

0 回答 0