代号一 - 条形图中可点击的条形



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

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 值吗? 究竟什么是启动指数?

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

我认为你不需要覆盖它。很抱歉,我们从我们分叉的 AChartEngine 代码中继承了糟糕的文档,所以我也不熟悉。

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

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

相关内容

  • 没有找到相关文章

最新更新