Skip to main content
All docs
V23.2

HeatmapTitleCollection.Insert(Int32, HeatmapTitle) Method

Inserts the specified title into the collection at the specified position.

Namespace: DevExpress.XtraCharts.Heatmap

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public void Insert(
    int index,
    HeatmapTitle title
)

Parameters

Name Type Description
index Int32

A zero-based integer that specifies the position at which the title is inserted.

title HeatmapTitle

Specifies the title to insert in the collection.

Remarks

The Insert method allows you to insert a title at a specific position. Elements that follow the insertion point are moved down to accommodate the new element.

If the index parameter is greater than or equal to the number of elements in the collection, the new element is added to the end.

To add a new element to the end of the collection, use the HeatmapTitleCollection.Add method.

See Also