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.
function App() {
var report = new Stimulsoft.Report.StiReport();
report.loadFile('Reports/Variables.mrt');
report.setVariable('Name', 'Andrew');
report.setVariable('Sex', true);
report.setVariable('BirthDay', Stimulsoft.System.DateTime.fromString('10.10.2010'));
return <Viewer report={report} />;
}report.setVariable(name, value) — assign each template variable by name before the viewer renders it.Stimulsoft.System.DateTime.fromString — build a date value for DateTime variables.<Viewer>, so the rendered document reflects the application's state.