DxChartValueAxis.Position Property
In This Article
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 |
---|---|
Horizontal |
A Horizontal |
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.
Razor
<DxChart Data="@SalesData">
<DxChartValueAxis Position="HorizontalEdge.Right">
<DxChartAxisTitle Text="Total Amount"></DxChartAxisTitle>
</DxChartValueAxis>
</DxChart>
#Online Demo
See Also