The onexport event is not triggering, the framework is .net 6 and im using the latest version of syncfusion blazor
Hi Jose,
We have considered your reported scenario as bug and logged a defect report for this issue. This fix will be available in our weekly patch release which is scheduled to be rolled out on 16th May 2023. We appreciate your patience until then. You can keep track of the bug from the below feedback link.
Feedback Link : https://www.syncfusion.com/feedback/43540/onexportcomplete-event-is-not-triggered-when-exporting-the-chart
If you have any more specification/precise replication procedure or a scenario to be tested, you can add it as a comment in the portal.
Regards,
Gopalakrishnan Veeraraghavan
Hi Jose,
We have fixed the issue of the OnExport event not triggering in the sample level. By default, if the data loaded from the client to the server exceeds 32KB, a server reconnect issue occurs which prevents the OnExport event from triggering when exporting the chart in Blazor. To overcome this issue, increase the message size in the Program.cs file. Add the following service to increase the message size in the Program.cs file. We have attached a sample for your reference. Please check with the below code snippet.
|
builder.Services.AddServerSideBlazor().AddHubOptions(o => { o.MaximumReceiveMessageSize = 102400000; }); |
Kindly revert us if you have any concerns.
Regards,
Gopalakrishnan Veeraraghavan