Skip to main content
A newer version of this page is available. .

DxChartTitle Class

Contains settings for the chart title.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxChartTitle :
    DxComplexSettingsComponent<DxChartTitle, ChartTitleModel>,
    IModelProvider<ChartSubTitleModel>

Remarks

The axis title is a short text displayed alongside the axis. Usually, the axis title shows units of measurement for values displayed by the axis. However, you can put any text in the axis title.

<DxChart Data="@SalesData">
   <DxChartTitle Text="Sales amount">
       <DxChartSubTitle Text="by cities"></DxChartSubTitle>
   </DxChartTitle>
    ...
    <DxChartLegend ...>
        <DxChartTitle Text="Years">
            <DxChartSubtitle Text="(2017-2019)"></DxChartSubtitle>
        </DxChartTitle>
    </DxChartLegend>
</DxChart>

Chart Titles and Subtitles

Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.Internal.ChartTitleModel>
DxComplexSettingsComponent<DxChartTitle, DevExpress.Blazor.Internal.ChartTitleModel>
DxChartTitle
See Also