I have array of DataPoints
with x, y coords. I want to highlight DataPoint
with highest/lowest Y value on GraphView
.
I can extract highest/lowest Y value by:
lineGraphSeries.getHighestValueY
or lineGraphSeries.getLowestValueY
. But what I need is to get actual DataPoint from the series with highest/lowest value and change its color.
Is there any way how to achieve this?