我有两个系列的areacharts。两者中的每一个都具有相同的数据,但具有不同的值。当我选择其中一个点时,我想知道点的索引。例如。当我选择第一个点时,我想取“1”等等。与here一样。
例如,他们使用了
formatter: function() {
return 'point ' + this.point.myIndex;
}
但它适用于javascript
formatter: function() {
return 'point ' + this.point.myIndex;
}
有没有人知道如何从gwt包装器Moxie Apps GWT Highcharts中做到这一点?