Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
GetReport action:var report = new StiReport();
report.Load(StiNetCoreHelper.MapPath(this, "Reports/TwoSimpleLists.mrt"));
report.Dictionary.Databases.Clear();
var data = new DataSet();
data.ReadXml(StiNetCoreHelper.MapPath(this, "Reports/Data/Demo.xml"));
report.RegData(data);
return StiNetCoreViewer.GetReportResult(this, report);Dictionary.Databases.Clear() — drop the connections baked into the template.RegData(data) — bind the code-supplied DataSet; call Dictionary.Synchronize() if the field structure changed.