Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
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.