Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
private StiReport GetDashboard()
{
var report = StiReport.CreateNewDashboard();
report.Load(StiNetCoreHelper.MapPath(this, "Dashboards/DashboardChristmas.mrt"));
return report;
}
public IActionResult ExportPdf() => StiNetCoreReportResponse.ResponseAsPdf(GetDashboard());
public IActionResult ExportExcel() => StiNetCoreReportResponse.ResponseAsExcel2007(GetDashboard());
public IActionResult PrintPdf() => StiNetCoreReportResponse.PrintAsPdf(GetDashboard());StiNetCoreReportResponse.ResponseAsPdf/ResponseAsExcel2007/ResponseAsPng — stream the dashboard to the browser in that format.PrintAsPdf/PrintAsHtml — send it straight to the browser's print flow.