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.v20.2.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.

Related API Members

The following properties accept/return HorizontalEdge values:

Remarks

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>        

See Also