I'm drawing some TLineSeries on a TChart, I set values with this:
serie.Add(IncMinute(now,-j),Random(100),'My Label',clBlue);
And then I showing values on event ChartToolset1DataPointCrosshairTool1AfterMouseMove.
I get X and Y value with:
y := Serie.GetYValue(tool.PointIndex);
my_date := Serie.GetXValue(tool.PointIndex);
And now I need to recover the value of the label and I cannot find how to do this, I need to get 'My Label', but maybe I'm wrong and this is impossible.
Thank you.