Hello
When I apply persist data to a pivot table it occasionally fails. For example, in the code below if you were to set json = "A nonsense string that will fail" then this will clearly throw an error. However I am unable to catch the error with a try catch so the code below results in a page catch. Is there a way to do this?
try
{
await PivotView.LoadPersistData(json);
}
catch (Exception ex )
{
NotificationService.DisplayNotification("Load Report Error", ex.Message, 0, NotificationType.Error);
}
Thanks