Skip to main content
All docs
V25.1
  • HeatmapControl.Titles Property

    Returns the collection of heatmap titles.

    Namespace: DevExpress.Xpf.Charts.Heatmap

    Assembly: DevExpress.Xpf.Charts.v25.1.dll

    NuGet Package: DevExpress.Wpf.Charts

    Declaration

    public TitleCollection Titles { get; }

    Property Value

    Type Description
    TitleCollection

    The collection of heatmap titles.

    Remarks

    You can add multiple titles to a heatmap. To do this, add Title objects to the Heatmap Control’s Titles collection and specify their Content properties.

    <dxh:HeatmapControl ToolTipEnabled="True">
        <dxh:HeatmapControl.Titles>
            <dxc:Title Content="Balance of Trade" HorizontalAlignment="Center"/>
        </dxh:HeatmapControl.Titles>
    </dxh:HeatmapControl>
    
    See Also