Skip to main content
All docs
V23.2

HeatmapHitInfo.HitObjects Property

Returns a collection of elements that are in the test point.

Namespace: DevExpress.XtraCharts.Heatmap

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public override object[] HitObjects { get; }

Property Value

Type Description
Object[]

A collection of heatmap elements under the test point.

Remarks

Use the HitObjects property to access all the heatmap elements located under the test point. Note that the elements in the collection are in reversed order of how they are drawn on the heatmap surface. The topmost element has the index 0 in the collection, and the bottommost element has the last index in the collection.

You can also use HitObject to obtain the topmost element only.

See Also