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.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[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.
<DxChart Data="@SalesData">
<DxChartValueAxis Position="HorizontalEdge.Right">
<DxChartAxisTitle Text="Total Amount"></DxChartAxisTitle>
</DxChartValueAxis>
</DxChart>
Online Demo
See Also