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 data = new DataSet();
data.ReadXmlSchema("Demo.xsd");
data.ReadXml("Demo.xml");
var report = new StiReport();
report.Load("SelectingColumns.mrt");
report.RegData(data);
report.Design(); // or report.Show();RegData(dataSet) — makes the dataset available to the template's column-selection logic.Design() opens the designer, Show() opens the viewer — both honour the columns chosen in the template..mrt, so the same code produces different printed columns without any change to the application.