Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change. .

VerticalAlignment Enum

Lists the vertical alignment options.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

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.

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