<bold-report-viewer id="viewer" report-service-url="/api/ReportViewer" dataSources="ViewBag.dataSources" processing-mode="Local" ></bold-report-viewer>
|
public IActionResult Index()
{
ReportDataSource reportDataSource = new ReportDataSource();
reportDataSource.Name = "StoreSales";
reportDataSource.Value = StoreSales.GetData();
ViewBag.dataSources = new List<ReportDataSource> { reportDataSource };
return View();
} |