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 the position of chart’s title and legend.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public enum VerticalEdge

Members

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

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

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

Chart Pane Field

See Also