IChart.Type

Syntax

Type: ChartType;

Description

The Type property determines a chart type.

Comments

A bar chart is plotted by default.

Example

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:

IChart