TdxChartHitTest.Point Property
Returns pixel coordinates of the inspected point within the Chart control’s client area.
Declaration
property Point: TPoint read;
Property Value
Type | Description |
---|---|
TPoint | Use |
Remarks
Use the Point
property to obtain inspected point pixel coordinates.
To identify what visual Chart element is at the inspected point, use the HitCode property.
Chart HitTest Information
Chart HitTest information updates every time when:
- The OnHotTrackElement or OnMouseMove event occurs.
Point
.X andPoint
.Y property values change to the corresponding mouse pointer coordinates. Argument and Value property values change to corresponding coordinates (in axis measurement units) if the inspected point is within the plot area of an XY diagram. - You call the CalculateHitTest procedure.
Point
.X andPoint
.Y property values change to the procedure’sX
andY
parameter values.
See Also