Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
StiViewerControl onto the form, then load and render a report and assign it to the control:var report = new StiReport();
report.Load(@"Reports\SimpleList.mrt");
report.Render();
stiViewerControl1.Report = report;Show() on the report and it opens in a ready-made preview window:var report = new StiReport();
report.Load(@"Reports\SimpleList.mrt");
report.Show();StiViewerControl lets you place the preview anywhere in your own interface, while Show() is the quickest way to display a report without designing a form.