IChart.Type

Fore Syntax

Type: ChartType;

Fore.NET Syntax

Type: Prognoz.Platform.Interop.Chart.ChartType;

Description

The Type property determines a chart type.

Comments

Bar chart is created by default.

Fore and Fore.NET examples

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:

IChart