I'm pretty new to Syncfusion charts so if this is a simple issue, please excuse me. I'm using version 17.4.0.39
I'm working on a Xamarin Forms app. In UWP the charts work fine but in the iOS build, they do not display. They display in the designer but not on the device or a simulator and there doesn't seem to be any errors.
In the AppDelegate.cs
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("MTYz..........................");
global::Xamarin.Forms.Forms.Init();
SfCalendarRenderer.Init();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}