代号为条形图中的单击条形图

时间:2017-08-10 07:52:44

标签: charts codenameone clickable

我想实现一个包含可点击条形的条形图。为了创建自定义条形图,我创建了一个扩展BarChart的类。 BarChart类有一个可能有用的方法:

clickableAreasForPoints(java.util.List<java.lang.Float> points, java.util.List<java.lang.Double> values, float yAxisValue, int seriesIndex, int startIndex)

我想要参数的解释。文件。对我来说有点困惑。

Parameters:
points - the array of points
values - the array of values of each point
yAxisValue - the minimum value of the y axis
seriesIndex - the index of the series to which the points belong
startIndex - the start index of the rendering points

“点”是x值,“值”是y值吗? 什么是startIndex?

编辑: 我的所有数据都存储在ArrayList中,其中索引表示X值,特定索引处的值是Y值。

1 个答案:

答案 0 :(得分:1)

我认为你不需要覆盖它。对于我们从我们分叉的AChartEngine代码中继承的错误文档感到抱歉,所以我对此也不熟悉。

API供内部使用,它实现了protected void seriesReleased(SeriesSelection sel)回调。

我认为您应该能够覆盖它并在单击列时获得回调。