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

VerticalEdge Enum

Lists vertical alignment options.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public enum VerticalEdge

Members

Name Description
Top

Top alignment.

Bottom

Bottom alignment.

Remarks

The following code snippet changes legend alignment in the DxChart<T> component:

<DxChart Data="@SalesData">
    @* ...*@
    <DxChartLegend HorizontalAlignment="HorizontalAlignment.Left"
                   VerticalAlignment="VerticalEdge.Bottom" />
</DxChart>

Chart Pane Field

See Also