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 designer in JavaScript.let designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false);
designer.onBeginProcessData = (args, callback) => Stimulsoft.handler.process(args, callback);
let report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/Christmas.mrt");
designer.report = report;
designer.renderHtml("designerContent");StiDesigner(options, id, false) — the client designer; renderHtml(id) places it in the page.onBeginProcessData → Stimulsoft.handler.process — routes data requests to the PHP handler.