Get TChartSeries at XY Point in TChart - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:00:00Zhttp://stackoverflow.com/feeds/question/482497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/482497/get-tchartseries-at-xy-point-in-tchart1Get TChartSeries at XY Point in TChartBen Daniel2009-01-27T06:44:14Z2009-02-05T05:32:54Z
<p>I'm using the <strong>TChart control that comes with Delphi 7</strong> and wish to <strong>get the Series and Value # of the line/bar under the mouse pointer.</strong></p>
<p>I'm aware of the OnClickSeries event which provides great info but <strong>I really want this info when I <em>hover</em> over a series</strong>.</p>
<p>EDIT: I found a hittest method on TChart which works with any series types and multiple series in the one chart so I've posted this and made it my accepted answer. Special Thanks to GameCat for his effort.</p>
http://stackoverflow.com/questions/482497/get-tchartseries-at-xy-point-in-tchart/482564#4825644Answer by Gamecat for Get TChartSeries at XY Point in TChartGamecat2009-01-27T07:36:32Z2009-02-03T11:09:04Z<p>You can check the OnChartMouseMove (or the OnSeriesMouseMove)</p>
<pre><code>procedure TForm5.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
var
i : Integer;
begin
i := Series1.CalcClickedPie(x,y); // i = index of checked data -1 for none
Memo1.Lines.Add(IntToStr(i));
end;
</code></pre>
<p>Ok, my bad, the code for bars is different (even easier):</p>
<pre><code>procedure TForm5.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
var
i : Integer;
begin
i := Series1.GetCursorValueIndex;
Memo1.Lines.Add(IntToStr(i));
end;
</code></pre>
http://stackoverflow.com/questions/482497/get-tchartseries-at-xy-point-in-tchart/514121#5141211Answer by Ben Daniel for Get TChartSeries at XY Point in TChartBen Daniel2009-02-05T01:07:03Z2009-02-05T05:32:54Z<p>I finally found this method which works with multiple series (even of different types) in a chart.</p>
<pre><code>TChart.CalcClickedPart(Pos: TPoint; Var Part: TChartClickedPart);
</code></pre>
<p>The method fills a TChartClickedPart record which contains the following detailed hit-test information:</p>
<pre><code>TChartClickedPart = record
Part : TChartClickedPartStyle;
PointIndex : Integer;
ASeries : TChartSeries;
AAxis : TChartAxis;
end;
</code></pre>
<p>This includes the Series and the ValueIndex (PointIndex) which is exactly what I wanted.</p>