Editing a Dashboard in the Designer
Unsere Beispiele der Projekte und Berichtsvorlagen helfen Ihnen, die Grundlagen der Arbeit mit unserer Software zu erlernen.This example shows how to load a dashboard template and edit it in the designer.
First, you need to add the
Next, create dashboard object and load dashboard template:
Auf dem Screenshot unten Sie können das Ergebnis des Beispiel-Codes ansehen:

First, you need to add the
StiBlazorDesigner component to the view page.
@using Stimulsoft.Report.Blazor;
...
<StiBlazorDesigner Report="@Report"></StiBlazorDesigner>
...
Next, create dashboard object and load dashboard template:
...
// Create dashboard object
this.Report = StiReport.CreateNewDashboard();
// Load dashboard template
var dashboardBytes = await Http.GetByteArrayAsync("Dashboards/DashboardChristmas.mrt");
this.Report.Load(dashboardBytes);
...Auf dem Screenshot unten Sie können das Ergebnis des Beispiel-Codes ansehen:
