The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
the save report event is activated at the beginning of the component, there is some way that is activated only when you click on the save button. This is the code that I refer to https://slshda.run.stackblitz.io.
As per the behavior of pivot table, the initially loaded report will be saved in data base (here it is local storage) then the reports available in the data base will be listed in a dedicated drop-down list in toolbar panel. So, the “saveReport” event is triggered initially. If you don’t want to save your report on initial rendering, then you can restrict it with the help of below code example.
let isSaveReportInitial: boolean = false;
saveReport(args: any) {
if (isSaveReportInitial) {
let reports = [];
let isSaved: boolean = false;
if (localStorage.pivotviewReports && localStorage.pivotviewReports !== "") {