Showing the Dashboard Designer Immediately after Running an App
Our sample projects and report templates can help you learn the basics of working with our products.The dashboard designer can be shown as soon as the page loads. This example creates the designer and dashboard on start-up.
Designer setup. Configure the designer, load the dashboard template, process its callbacks, and connect the save action to the application.
Designer setup. Configure the designer, load the dashboard template, process its callbacks, and connect the save action to the application.
var designer = new Stimulsoft.Designer.StiDesigner();
var report = Stimulsoft.Report.StiReport.createNewDashboard();
report.loadFile("../dashboard/Christmas.mrt");
designer.report = report;Creating the designer with default options and assigning a dashboard displays it immediately — suitable for applications whose main purpose is dashboard editing.