Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
StiChart with its area and series, and add it to the page:var report = new StiReport();
// Create a page and add it to the report
var page = new StiPage { /* margins, size */ };
report.Pages.Clear();
report.Pages.Add(page);
// Build the chart, its Gantt area and a series
var chart = new StiChart { EditorType = StiChartEditorType.Simple };
chart.Area = new StiGanttArea { /* axes & grid styling */ };
chart.Series.Add(new StiGanttSeries { /* values & titles */ });
// Place the chart on the page and prepare the data
page.Components.Add(chart);
report.Dictionary.Synchronize();StiChart with a StiGanttArea and StiGanttSeries — the chart, its plotting area and the data series.AssetLoader.Open(new Uri("avares://…")).page.Components.Add(chart) + Dictionary.Synchronize() — put the chart on the page and prepare its data.