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

HorizontalEdge Enum

Lists the positions for the value axis.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public enum HorizontalEdge

Members

Name Description
Left

Places the value axis at the left of the chart.

Right

Places the value axis at the right of the chart.

Remarks

The Position property is now obsolete. Use the Alignment property instead.

The following example uses the HorizontalEdge values to configure the Position property:

<DxChart Data="@SalesData">
    ...
    <DxChartValueAxis Position="HorizontalEdge.Right">
        <DxChartAxisTitle Text="Total Amount"></DxChartAxisTitle>
    </DxChartValueAxis>
</DxChart>        

Charts - A Value axis position

See Also