Type: ChartType;
Type: Prognoz.Platform.Interop.Chart.ChartType;
The Type property determines a chart type.
Bar chart is created by default.
This example assumes that there is the Chart object of the IChart type. To execute this example, add a reference to system assembly Chart.
Sub UserProc;
Var
Chart : IChart;
Begin
Chart.Type := ChartType.Circles;
End Sub UserProc;
After executing the example the chart is transformed into a pie chart.
See also: