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.
<StiBlazorDesigner Report="@Report" OnSaveReport="OnSaveReport" />Persist on save.private void OnSaveReport(StiSaveReportEventArgs args)
{
var reportJson = args.Report.SaveToJsonString();
// store reportJson where you need
}StiBlazorDesigner — the native designer component, bound to a StiReport.OnSaveReport event → args.Report.SaveToJsonString() serializes the edited template for storage.OnSaveReport when the user saves, so you control where the template goes.