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.
var report = StiReport.CreateNewDashboard();
report.Load("Dashboards\\Dashboard.mrt");
var jsonBytes = File.ReadAllBytes("Dashboards\\Demo.json");
var dataSet = StiJsonConnector.Get().GetDataSet(new StiJsonOptions(jsonBytes));
report.RegData(dataSet);
report.Dictionary.Synchronize();StiJsonConnector.Get().GetDataSet(new StiJsonOptions(bytes)) — parses JSON into a DataSet.RegData + Dictionary.Synchronize() — bind the data and generate matching fields.