DxChartTitle.Text Property
In This Article
Specifies title text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[Parameter]
public string Text { get; set; }
#Property Value
Type | Description |
---|---|
String | The text. |
#Remarks
Use the Text
property to specify the text for the chart title.
Razor
<DxChart Data="@SalesData">
<DxChartTitle Text="Sales amount" />
...
</DxChart>
See Also