Skip to main content

HorizontalEdge Enum

Lists the positions for the value axis.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.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 following example uses the HorizontalEdge values to configure the Alignment property:

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

Charts - A Value axis position

See Also