Currently, I am exporting my report to a PDF with over 300 pages, but it takes up to 7 minutes. Previously, when I used Report.Web, it only took a few tens of seconds. Do you have any suggestions for my issue, or is it really that much slower running on Reports.Blazor?
Here is the code I am using to export:
Code: Select all
var settingPDF = new StiPdfExportSetting()
{
Compressed = true,
UseUnicode = true
};
using(var stream = new MemoryStream())
{
this.Report.ExportDocument(StiExportFormat.Pdf, stream, settingPDF );
}