Skip to main content

TdxChartHitTest.SeriesPoint Property

Provides access to the series point to which the inspected point belongs.

Declaration

property SeriesPoint: TdxChartSeriesPointInfo read;

Property Value

Type Description
TdxChartSeriesPointInfo

The currently inspected series point. This property returns nil (in Delphi) or nullptr (in C++Builder) if the inspected point is not within the area occupied by a series point or its label.

Remarks

You can use SeriesPoint.Argument and SeriesPoint.Value properties to identify a series point at the inspected point (that is, the HitCode property returns TdxChartHitCode.SeriesPoint or TdxChartHitCode.SeriesValueLabel). In this case, you can also use Series and Diagram properties to access the parent series and diagram of the inspected series point.

VCL Chart Control: An Inspected Series Point

Tip

If the inspected point is within the plot area of an XY diagram, you can also use Argument and Value properties to obtain series point coordinates in corresponding axis measurement units.

See Also