Hi Dan Prior,
You can achieve your
requirement “Extend the range of axis” with the help of Minimum and Maximum
property of SFNumericalAxis. Please find the code example below.
CodeSnippet:
|
SFNumericalAxis secondaryAxis = new SFNumericalAxis();
secondaryAxis.Minimum = new NSNumber(0);
secondaryAxis.Maximum = new NSNumber(200);
chart.SecondaryAxis = secondaryAxis;
|
For more details,
please refer the below link
https://help.syncfusion.com/xamarin-ios/sfchart/axis#customizing-numeric-range
Regards,
Yuvaraj.