Customizing the Designer
Our sample projects and report templates can help you learn the basics of working with our products.The dashboard designer interface can be trimmed to expose only the features you want. This example hides several toolbar items.
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 options = new Stimulsoft.Designer.StiDesignerOptions();
options.appearance.fullScreenMode = true;
options.toolbar.showPreviewButton = false;
options.toolbar.showFileMenu = false;
var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);
var report = Stimulsoft.Report.StiReport.createNewDashboard();
report.loadFile("../dashboard/Christmas.mrt");
designer.report = report;The toolbar option group switches individual interface elements on and off, so you can present a simplified designer tailored to your users.