Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
stiReport1.Render();
var comps = stiReport1.RenderedPages[0].GetComponents();
text = comps["Text1"] as StiText;
chart = comps["Chart1"] as StiChart;Mutate them on a timer. Changing their properties updates the live preview:private void timer1_Tick(object sender, EventArgs e)
{
text.TextOptions.Angle = (text.TextOptions.Angle - 1 + 360) % 360;
((StiDoughnutSeries)chart.Series[0]).StartAngle -= 1;
}RenderedPages[0].GetComponents() — access the concrete component instances of the prepared document.