blazor-devexpress-dot-blazor-72e2a4d5.md
Defines a title for a chart or legend.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxChartTitle :
DxComplexSettingsComponent<DxChartTitle, ChartTitleModel>,
IModelProvider<ChartSubTitleModel>
Use DxChartTitle objects to customize title settings for the following components:
DxChart<T>A control that visualizes bound data as graphs: bar, area, line, and others.DxPieChart<T>A control that visualizes data as Pie and Donut charts.DxPolarChart<T>A control that visualizes bound data as graphs in polar coordinates.DxChartLegendDefines a chart legend.
The DxChartTitle is a component that displays a short caption for the Chart. You can put the DxChartTitle inside the DxChart directly or DxChartLegend.
<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>
Object ComponentBase DxSettingsComponent<DevExpress.Blazor.Internal.ChartTitleModel> DxComplexSettingsComponent<DxChartTitle, DevExpress.Blazor.Internal.ChartTitleModel> DxChartTitle
See Also