The dashboard designer supports many themes, chosen through the options object from the StiDesignerTheme enumeration.

In React.
import { Designer, Stimulsoft } from "stimulsoft-dashboards-js-react/designer";

function App() {
    var report = new Stimulsoft.Report.StiReport();
    report.loadFile("Dashboards/Dashboard.mrt");

    var options = new Stimulsoft.Designer.StiDesignerOptions();
    options.appearance.theme = Stimulsoft.Designer.StiDesignerTheme.Office2022WhiteViolet;
    options.appearance.fullScreenMode = true;

    return <Designer options={options} report={report} />;
}

How it works. The theme is a designer option, so one assignment reskins the entire editor.

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.