据我所知,钻取数据格式是这样的:
data: [['foo1', 2], ['foo2', 3], ['foo3', 2]]
我实际上成功地将数据添加到每个数组中,如下所示:
data: [['foo1', 2, 111], ['foo2', 3, 222], ['foo3', 2, 333]]
但显示它给我带来了麻烦。据我所知,对于工具提示格式化程序,使用this.point.name,this.point.y,this.x或this.percentage访问数据。如何在这一点上检索额外数据?
答案 0 :(得分:1)
切换到使用点对象而不是数组的数组。
drilldown: {
series: [{
id: 'animals',
data: [{name: 'Cats',
y: 4,
otherValue: 100},
在格式化程序中,您的额外值将在:
this.point.otherValue
小提琴example。