标签: android kotlin android-graphview
我有{strong> x,y坐标的DataPoints数组。我想突出显示DataPoint上具有最高/最低 Y 值的GraphView。
DataPoints
DataPoint
GraphView
我可以通过以下方式提取最高/最低Y值:
lineGraphSeries.getHighestValueY或lineGraphSeries.getLowestValueY。但是我需要从最高/最低值的序列中获取实际的DataPoint并更改其颜色。
lineGraphSeries.getHighestValueY
lineGraphSeries.getLowestValueY
有什么方法可以实现这一目标吗?