Type: ChartType;
The Type property determines a chart type.
A bar chart is plotted by default.
This example assumes that there is the Chart object of the IChart type. To execute the example, add a link to the Chart system assembly.
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: