Good day,
I am using your SfChart with RadarSeries graph to display some information.
I'm not doing anything special, just displaying 18 (string) items with values (double) of 1-7.
<chart:SfChart>
<chart:SfChart.PrimaryAxis>
<chart:CategoryAxis />
</chart:SfChart.PrimaryAxis>
<chart:SfChart.SecondaryAxis>
<chart:NumericalAxis
Interval="1"
Maximum="7"
Minimum="0">
</chart:NumericalAxis>
</chart:SfChart.SecondaryAxis>
<chart:SfChart.Series>
<chart:RadarSeries
ItemsSource="{Binding ScoreData}"
Opacity="0.7"
StrokeColor="Black"
StrokeWidth="1"
XBindingPath="Category"
YBindingPath="Score"
Color="{Binding GraphFullColor}" />
</chart:SfChart.Series>
</chart:SfChart>
This displays correctly on Android and UWP.
However on iOS it draws incorrectly (see photo below)
I've tried changing properties, making labels shorter, reading through all your docs and checking forums.
I can't find anywhere that mentions a limitation on number items on iOS, or issues around rendering.
Any help would be appreciated.
Some additional info.
iOS Radar renderers correctly up 13 Items (Categories), as I push to 14, it starts overlapping/drawing incorrectly
Thanks Yuvaraj
Eagerly await the feedback.
Regards,
Ryan
Thanks Gayathri,
Will try that suggestion and report my findings.
Will keep an eye out for the details.
Cheers,
Ryan