Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/SimpleList.mrt");
var dataSet = new Stimulsoft.System.Data.DataSet("Demo");
dataSet.readXmlSchemaFile("../reports/Demo.xsd");
dataSet.readXmlFile("../reports/Demo.xml");
report.dictionary.databases.clear();
report.regData("Demo", "Demo", dataSet);
report.renderAsync(function () { });Reading the schema (.xsd) first gives the dataset its structure, then the data (.xml) fills it. As with JSON, the dataset is registered under a name matching the template's data source.