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: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 render
page.Components.Add(chart);
report.Dictionary.Synchronize();
report.Show();StiChart with a StiGanttArea and StiGanttSeries — the chart, its plotting area and the data series.chart.Area / chart.Series.Add() — attach the area and series to the chart.page.Components.Add(chart) + Dictionary.Synchronize() — put the chart on the page and prepare the data before Show().