This example shows how to load a dashboard template and edit it in the designer.

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:

Editing a Dashboard in the Designer

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.