Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

HorizontalEdge Enum

Lists the positions for the value axis.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
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:

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

Charts - A Value axis position

See Also