show/hide this revision's text 2 Added more correctness

I just finally found this method which works with multiple series (even of different types) in a chart.

TChart.CalcClickedPart(Pos: TPoint; Var Part: TChartClickedPart);

The method fills a TChartClickedPart record which contains the following detailed hit-test information:

TChartClickedPart = record
  Part : TChartClickedPartStyle;
  PointIndex : Integer;
  ASeries : TChartSeries;
  AAxis : TChartAxis;
end;

This includes the Series and the ValueIndex (PointIndex) which is exactly what I wanted.

show/hide this revision's text 1

I just found this method which works with multiple series (even of different types) in a chart.

TChart.CalcClickedPart(Pos: TPoint; Var Part: TChartClickedPart);

The method fills a TChartClickedPart record which contains the following detailed hit-test information:

TChartClickedPart = record
  Part : TChartClickedPartStyle;
  PointIndex : Integer;
  ASeries : TChartSeries;
  AAxis : TChartAxis;
end;

This includes the Series and the ValueIndex (PointIndex) which is exactly what I wanted.