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.
@Html.StiNetCoreViewer helper with the actions the viewer should call:@using Stimulsoft.Report.Mvc;
@Html.StiNetCoreViewer(new StiNetCoreViewerOptions()
{
Actions =
{
GetReport = "GetReport",
ViewerEvent = "ViewerEvent"
}
})CreateNewDashboard(), load an .mrt, and return it:public IActionResult GetReport()
{
var report = StiReport.CreateNewDashboard();
report.Load(StiNetCoreHelper.MapPath(this, "Dashboards/DashboardChristmas.mrt"));
return StiNetCoreViewer.GetReportResult(this, report);
}
public IActionResult ViewerEvent()
{
return StiNetCoreViewer.ViewerEventResult(this);
}StiReport created with CreateNewDashboard(). The viewer requests it through GetReport, and the interactive dashboard — charts, tables, gauges and filters — is rendered in the browser, with every interaction routed back to the controller.