What Changed
We marked the DxChartValueBreaks class as obsolete. Use the new DxChartScaleBreak class instead.
Reasons for Change
This change was made to improve clarity. The previous class name (DxChartValueBreaks
) could indicate that it is applicable to value axis only.
Impact on Existing Apps
This change affects your application if it uses the mentioned class.
Razor<DxChart Data="@Sales.dataSource">
<DxChartArgumentAxis>
<DxChartValueBreaks StartValue="@(new DateTime(2017, 01, 04))" EndValue="@(new DateTime(2017, 04, 04))" />
</DxChartArgumentAxis>
<DxChartValueAxis>
<DxChartValueBreaks StartValue="10000" EndValue="60000" />
</DxChartValueAxis>
</DxChart>
How to Upgrade Existing Apps
Replace the DxChartValueBreaks
component with DxChartScaleBreak
.
Razor<DxChart Data="@Sales.dataSource">
<DxChartArgumentAxis>
<DxChartScaleBreak StartValue="@(new DateTime(2017, 01, 04))" EndValue="@(new DateTime(2017, 04, 04))" />
</DxChartArgumentAxis>
<DxChartValueAxis>
<DxChartScaleBreak StartValue="10000" EndValue="60000" />
</DxChartValueAxis>
</DxChart>