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 = Report.Clone() as StiReport;
report.Dictionary.Databases.Clear();
var data = new DataSet();
data.ReadXml(await Http.GetStreamAsync("Data/Demo1.xml"));
report.RegData(data);
report.Dictionary.Synchronize();
report.Render();
Report = report;
StateHasChanged();Clone() — work on a copy so the original template is untouched.Dictionary.Databases.Clear() + RegData + Synchronize() — drop the template's connections and bind the new data.StateHasChanged() — re-render the Razor page so the viewer shows the updated report.