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

DxChartValueAxis.Position Property

Specifies the axis position.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public HorizontalEdge Position { get; set; }

Property Value

Type Description
HorizontalEdge

One of the enumeration values.

Available values:

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

You can locate the axis at the left or right side of the chart.

Charts - Value axis position

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

Online Demo

Charts - Multiple Axes

See Also