Editing a Dashboard in the Designer
Наши примеры проектов и шаблоны отчётов помогут Вам разобраться в основах работы с нашими продуктами.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:
На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

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);
...На скриншоте ниже Вы можете увидеть результат выполнения данного кода:
