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 edit a dashboard in the designer. First, you need to load dashboard template:
Next, use
In the screenshot below you can see the result of the sample code:

...
private StiReport GetTemplate()
{
var report = StiReport.CreateNewDashboard();
report.Load("Dashboards\\DashboardChristmas.mrt");
return report;
}
...
Next, use
Design() method to open the dashboard in the designer:
...
private void buttonEdit_Click(object sender, EventArgs e)
{
var report = GetTemplate();
report.Design();
}
...In the screenshot below you can see the result of the sample code:
