0

我正在使用来绘制我的样条图。这是我的系列数据示例数组:

data: [
    [1371563990000,1,530,100],[1373204470000,2,529,0],[1373464877000,0.5,531,50]
]

.

我想访问所选系列的第四个索引值。我this.series.data[this.myIndex].config['z']用来获取第三个索引值但不知道如何获取第四个索引值。

提前致谢

4

1 回答 1

2

您需要使用对象,而不是数组,

{
   x: 1371563990000,
   y: 1,
   customParam1: 530,
   customParam2: 100
}

参数将在 point.options.customParam1 中可用

于 2013-07-10T13:05:45.533 回答