Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var report = new StiReport();
report.Load(GetReportStream());
report.Render();
var stream = new MemoryStream();
report.ExportDocument(StiExportFormat.Pdf, stream); // Word2007, Excel2007, Text, ImagePng, ...Render() — builds the document pages in memory; required before exporting.ExportDocument(StiExportFormat, stream) — writes the result; the StiExportFormat enum picks the format.