The viewer can be flipped into right-to-left layout for RTL languages with a single appearance option.

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

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

    var options = new Stimulsoft.Viewer.StiViewerOptions();
    options.appearance.rightToLeft = true;

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

How it works. The option re-lays the entire viewer UI, so it reads correctly in right-to-left locales.

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.