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.
GetReport action:var report = StiReport.CreateNewDashboard();
report.Load(StiNetCoreHelper.MapPath(this, "Dashboards/Dashboard.mrt"));
var jsonBytes = System.IO.File.ReadAllBytes(StiNetCoreHelper.MapPath(this, "Dashboards/Demo.json"));
var dataSet = StiJsonConnector.Get().GetDataSet(new StiJsonOptions(jsonBytes));
report.Dictionary.Databases.Clear();
report.RegData("Demo", "Demo", dataSet);
return StiNetCoreViewer.GetReportResult(this, report);StiJsonConnector.Get().GetDataSet(new StiJsonOptions(bytes)) — parses JSON into a DataSet.Databases.Clear() + RegData(name, alias, data) — drop the template connections and bind the new data.StiNetCoreViewer.GetReportResult(this, report) — returns the prepared dashboard to the viewer component.