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.
var report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/ReportWithVariable.mrt");
var variable = report.dictionary.variables.getByName("Variable1");
variable.value = "test";
report.renderAsync(function () { /* report is built */ });report.dictionary.variables.getByName("Variable1") — look up a template variable by name.variable.value = ... — assign before renderAsync so the value flows into the rendered report.