In our Bold Reports new assemblies are introduced for both client and server-side to resolve the compatibility problem between Essential Studio Report Viewer versions. It has changes in both Web API service and client-side scripts.
This section provides step-by-step instructions for migrating Report Viewer from Syncfusion Essential Studio release version to Bold Reports version of UWP Report Viewer application:
In the Solution Explorer, right-click the References and remove the following assembly references:
Syncfusion.SfReportViewer.UWP
Add the assembly from the Syncfusion NuGet package BoldReports.UWP
. To add from NuGet, right-click the project or solution in the Solution Explorer tab, and choose Manage NuGet Packages. Search for BoldReports.UWP
NuGet package, and install in your application.
Refer to the NuGet Packages section to learn more details about installing and configuring Report Viewer NuGet packages.
Open the MainWindow.xaml
file and remove the following namespace in your XAML page.
xmlns:syncfusion="using:BoldReports.UI.Xaml"
Add the following namespace in your XAML page.
xmlns:syncfusion="using:BoldReports.UI.Xaml"
Syncfusion.EJ.ReportViewer
assembly reference.BoldReports.Web
. To add from NuGet, right-click the project or solution in the Solution Explorer tab, and choose Manage NuGet Packages. Search for BoldReports.Web
NuGet package, and then install in your application.Refer to the NuGet Packages section to learn more details about installing and configuring Report Viewer NuGet packages.
The IReportController
interface is moved to BoldReports.Web.ReportViewer
. Open the Report Viewer Web API Controller file and remove the following using statement.
using Syncfusion.EJ.ReportViewer;
Add the following using statement.
using BoldReports.Web.ReportViewer;
Your application is successfully upgraded to the latest version of Report Viewer, and you can run the application with new assemblies.
Now, the BoldReports.Web
can export the reports with data visualization components only using web components. It is mandatory to configure the web scripts in Report Viewer Web API controller for exporting data visualization components such as chart, gauge, and map that are used in report definition. To configure the scripts in Web API, refer to the following steps:
Open the Report Viewer Web API controller.
Configure the following scripts and styles in OnInitReportOptions
on Web API controller:
jquery-1.10.2.min.js
bold.reports.common.min.js
bold.reports.widgets.min.js
ej.chart.min.js
- Exports the chart item. Add this script only if your report contains the chart report item.ej2-base.min.js
, ej2-data.min.js
, ej2-pdf-export.min.js
, ej2-svg-base.min.js
, ej2-lineargauge.min.js
and ej2-circulargauge.min.js
- Exports the gauge item. Add this script only if your report contains the gauge report item.ej.map.min.js
- Exports the map item. Add this script only if your report contains the map report item.bold.report-viewer.min.js
Replace the following codes in Report Viewer Web API controller.
[NonAction]
public void OnInitReportOptions(ReportViewerOptions reportOption)
{
var resourcesPath = System.Web.Hosting.HostingEnvironment.MapPath("~/Scripts");
reportOption.ReportModel.ExportResourceOption.Scripts = new List<string>
{
"https://cdn.boldreports.com/6.3.16/scripts/common/bold.reports.widgets.min.js",
"https://cdn.boldreports.com/6.3.16/scripts/common/bold.reports.common.min.js",
//Chart component script
"https://cdn.boldreports.com/6.3.16/scripts/data-visualization/ej.chart.min.js",
//Gauge component scripts
"https://cdn.boldreports.com/6.3.16/scripts/common/ej2-base.min.js",
"https://cdn.boldreports.com/6.3.16/scripts/common/ej2-data.min.js",
"https://cdn.boldreports.com/6.3.16/scripts/common/ej2-pdf-export.min.js",
"https://cdn.boldreports.com/6.3.16/scripts/common/ej2-svg-base.min.js",
"https://cdn.boldreports.com/6.3.16/scripts/data-visualization/ej2-lineargauge.min.js",
"https://cdn.boldreports.com/6.3.16/scripts/data-visualization/ej2-circulargauge.min.js",
//Map component script
"https://cdn.boldreports.com/6.3.16/scripts/data-visualization/ej2-maps.min.js",
//Report Viewer Script
"https://cdn.boldreports.com/6.3.16/scripts/bold.report-viewer.min.js",
};
reportOption.ReportModel.ExportResourceOption.DependentScripts = new List<string>
{
"https://code.jquery.com/jquery-1.10.2.min.js"
};
}
The data visulization components will not export without the above script configurations.