Back to Devexpress

HeatmapAxis.Title Property

corelibraries-devexpress-dot-xtracharts-dot-heatmap-dot-heatmapaxis-1a0e62b2.md

latest1.8 KB
Original Source

HeatmapAxis.Title Property

Returns the axis title.

Namespace : DevExpress.XtraCharts.Heatmap

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
public AxisTitle Title { get; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Elements)>
Public ReadOnly Property Title As AxisTitle

Property Value

TypeDescription
AxisTitle

Contains axis title settings.

|

Remarks

You can accompany an axis with a single title that can be aligned along the axis. The Title property allows you to access title options. To show the title, enable the title’s Visibility property and specify the title Text.

csharp
heatmap.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
heatmap.AxisY.Title.Text = "Category";
vb
heatmap.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.True
heatmap.AxisY.Title.Text = "Category"

See Also

HeatmapAxis Class

HeatmapAxis Members

DevExpress.XtraCharts.Heatmap Namespace