Back to Devexpress

HorizontalEdge Enum

blazor-devexpress-dot-blazor-7dc7977e.md

latest1003 B
Original Source

HorizontalEdge Enum

Lists the positions for the value axis.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public enum HorizontalEdge

Members

NameDescription
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>

See Also

DevExpress.Blazor Namespace