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

DxChartValueAxis.Position Property

OBSOLETE

This property is obsolete now. Use the Alignment property instead.

Specifies the axis position.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Browsable(false)]
[Obsolete("This property is obsolete now. Use the Alignment property instead.")]
[Parameter]
public HorizontalEdge Position { get; set; }

#Property Value

Type Description
HorizontalEdge

A HorizontalEdge enumeration value.

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

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

#Online Demo

Charts - Multiple Axes

See Also