What Changed
We marked the DxChartValueAxis.Position property as obsolete. Use the new DxChartAxis.Alignment property instead.
Reasons for Change
The Position
property did not work in rotated Charts and did not apply to the Argument axis.
Impact on Existing Apps
This change affects your application if it uses the mentioned property.
Razor<DxChart Data="@SalesData">
<DxChartValueAxis Position="HorizontalEdge.Right">
<DxChartAxisTitle Text="Total Amount" />
</DxChartValueAxis>
</DxChart>
How to Upgrade Existing Apps
Replace the Position
property with the Alignment
property.
Razor<DxChart Data="@SalesData">
<DxChartValueAxis Alignment="ChartAxisAlignment.Far">
<DxChartAxisTitle Text="Total Amount" />
</DxChartValueAxis>
</DxChart>