DxChartTitle.VerticalAlignment Property
Specifies the chart title’s vertical alignment.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public VerticalEdge VerticalAlignment { get; set; }
Property Value
| Type | Description |
|---|---|
| VerticalEdge | A VerticalEdge enumeration value. |
Available values:
| Name | Description |
|---|---|
| Top | Top alignment. |
| Bottom | Bottom alignment. |
Remarks
Use the VerticalAlignment property to specify the vertical position of the chart title.
<DxChart Data="@SalesData">
<DxChartTitle HorizontalAlignment="VerticalEdge.Bottom" .../>
...
</DxChart>
See Also