This section provides simple step-by-step instructions to update your existing Report Viewer application to our latest modern v2.0 scripts, styles and components.
Open the \Views\Shared\_Layout.cshtml
page that contains Report Viewer and its scripts.
Remove the following older scripts and CSS references in your _Layout.cshtml
page.
bold.reports.all.min.css
ej2-base.min.js
ej2-data.min.js
ej2-pdf-export.min.js
ej2-svg-base.min.js
ej2-lineargauge.min.js
ej2-circulargauge.min.js
ej2-maps.min.js
ej.chart.min.js
bold.reports.common.min.js
bold.reports.widgets.min.js
bold.report-viewer.min.js
Add the following v2.0 scripts and CSS references in your _Layout.cshtml
page.
@Styles.Render("~/Content/bold-reports/v2.0/tailwind-light/bold.report-viewer.min.css")
@Scripts.Render("~/Scripts/bold-reports/v2.0/common/bold.reports.common.min.js")
@Scripts.Render("~/Scripts/bold-reports/v2.0/common/bold.reports.widgets.min.js")
@Scripts.Render("~/Scripts/bold-reports/v2.0/bold.report-viewer.min.js")
```