Editing a Dashboard in the Designer
Our sample projects and report templates can help you learn the basics of working with our products.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:
In the screenshot below you can see the result of the sample code:

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);
...In the screenshot below you can see the result of the sample code:
