SFRadarSeries to config data range

There are XRange and YRange property that I can read from SFRadarSeries. Just wondering if it possible to setup those properties so that we can scale the radar graph by ourself.

E.g. in the attached screenshot, is it possible that we can force the data scope from 0% to 200%?


Thanks.


Attachment: Screen_Shot_20220413_at_10.53.45_am.png_c7f5c225.zip

1 Reply

YP Yuvaraj Palanisamy Syncfusion Team April 14, 2022 05:50 AM UTC

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.


Loader.
Up arrow icon