IChartCircleInfo.FixedRadius

Fore Syntax

FixedRadius: Double;

Fore.NET Syntax

FixedRadius: double;

Description

The FixedRadius property determines a pie chart radius.

Comments

The radius is set automatically by default.

Fore Example

This example assumes that there is the Chart object of the IChart type. The chart must be a pie chart. If required, the chart can be transformed into a pie chart by executing the command: "Chart.Type := 5 As ChartType".

Add a link to the Chart system assembly.

Sub Circle;
Var
    Chart: IChart;
Begin
    Chart.CircleInfo.FixedRadius := 
30;
End Sub Circle;

After executing the example the radius of the pie chart equals 30 millimeters.

Fore.NET Example

The requirements and result of the Fore.NET example execution match with those in the Fore example.

Imports Prognoz.Platform.Interop.Chart;

Public Shared Sub Main(Params: StartParams);
Var
    Chart: IChart;
Begin
    Chart.CircleInfo.FixedRadius := 30;
End Sub;

See also:

IChartCircleInfo