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

VerticalEdge Enum

Lists the position of chart’s title and legend.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

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.

Related API Members

The following properties accept/return VerticalEdge values:

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