Skip to main content

DxChartTitle.VerticalAlignment Property

Specifies the chart title’s vertical alignment.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.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

Places the title or legend at the top of the chart.

Bottom

Places the title or legend at the bottom of the chart.

Remarks

Use the VerticalAlignment property to specify the vertical position of the chart title.

<DxChart Data="@SalesData">
    <DxChartTitle HorizontalAlignment="VerticalEdge.Bottom" .../>
    ...
</DxChart>
See Also