An exception is thrown on Android when this code is executed
this.chart1.VerticalAxis = new NumericalAxis { Minimum = 300, Maximum = 400 };
this.chart1.VerticalAxis = new NumericalAxis { Minimum = 100, Maximum = 200 };
When you have a Chart instance with fixed size and it's larger than the screen size, the Chart is not rendered and the following error is displayed in the VS output:
"RadExtendedCartesianChartView not displayed because it is too large to fit into a software layer (or drawing cache)"
After setting the MajorLinesVisibility property to GridLineVisibility.Xy only the Y lines are showing up.
When the Chart is zoomed, new labels are not rendered on iOS.
If customers set bindings to these properties and try to set range from negative to positive values (e.g. from -0.5 to 0.5) the bindings are not applied as expected.
Available in minor release 2018.3.1109. It will also be available in the R1 2019 release.
Available in minor release 2018.3.1109. It will also be available in the R1 2019 release.
NSRangeException is thrown when second series has more items than the first one on iOS. Available in the R3 2018 SP release.