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.
CreateNewDashboard(); the native Blazor viewer tag then renders it in the browser.<StiBlazorViewer Report="@Report" />Load the dashboard. Create a dashboard report and load its template in OnInitializedAsync:this.Report = StiReport.CreateNewDashboard();
var dashboardBytes = await Http.GetByteArrayAsync("Dashboards/DashboardChristmas.mrt");
this.Report.Load(dashboardBytes);StiReport.CreateNewDashboard() — creates a dashboard-type report bound to the viewer.Http.GetByteArrayAsync — fetches the .mrt from wwwroot, then Load(bytes) opens it (WebAssembly).StiBlazorViewer tag renders them entirely in the browser.