在Chart上用十字丝选点,为什么在设置好横,纵轴坐标后,点选点,这个点选在了左下角的原点,而不是十字丝所在的点,需要先动下十字丝,选上的点才是十字丝的交点,记录坐标程序如下:
procedure TForm1.ActionNoteCoordinateExecute(Sender: TObject);
begin
  Series2.AddXY(Rx, Ry);
end;
其中Rx, Ry的程序如下:
procedure TForm1.ChartTool1Change(Sender: TCursorTool; x, y: Integer;
  const XValue, YValue: Double; Series: TChartSeries; ValueIndex: Integer);
begin
    Ry := Chart1.LeftAxis.CalcPosPoint(y);
    Rx := Chart1.BottomAxis.CalcPosPoint(x);
    StatusBar1.Panels[0].Text := Format('x=%d,%.4f, y=%d,%.4f',[x, Rx, y, Ry]);
end;
请问这是为什么,并且怎样解决????!
谢谢!!!!!!!!!