DxChartTitle.Text Property
Specifies the title text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v22.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[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.
<DxChart Data="@SalesData">
<DxChartTitle Text="Sales amount" />
...
</DxChart>
See Also