HeatmapAxis.Title Property
In This Article
Returns the axis title.
Namespace: DevExpress.XtraCharts.Heatmap
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Elements)]
public AxisTitle Title { get; }
#Property Value
Type | Description |
---|---|
Axis |
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.
heatmap.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
heatmap.AxisY.Title.Text = "Category";
See Also