This example shows how to edit a dashboard in the designer. First, you need to load dashboard template:
...

	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:

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.