Skip to main content
A newer version of this page is available. .

VerticalAlignment Enum

Lists the vertical alignment options.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum VerticalAlignment

Members

Name Description
Top

Aligns the items or text at the top.

Center

Aligns the items or text at the center.

Bottom

Aligns the items or text at the bottom.

Related API Members

The following properties accept/return VerticalAlignment values:

Remarks

The following example uses the VerticalAlignment values to configure the VerticalAlignment property:

<DxChartValueAxis>
    <DxChartConstantLine Value="50" >
        <DxChartConstantLineLabel Text="Average"
                                  VerticalAlignment="VerticalAlignment.Center"
                                  Position="RelativePosition.Inside" />
    </DxChartConstantLine>
    <DxChartConstantLine Value="100"/>
    ...
</DxChartValueAxis>

Charts - A constant line label

See Also