Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
StiHandler request handler.$handler = new StiHandler();
$handler->process();Build the viewer in JavaScript. Include stimulsoft.dashboards.js alongside the report scripts:let viewer = new Stimulsoft.Viewer.StiViewer(options, "StiViewer", false);
viewer.onBeginProcessData = (args, callback) => Stimulsoft.handler.process(args, callback);
let report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/Christmas.mrt");
viewer.report = report;
viewer.renderHtml("viewerContent");StiHandler->process() — the PHP side answering the viewer's data/event requests.onBeginProcessData → Stimulsoft.handler.process — routes client data requests to the PHP handler.