ConcentricDistance: Double;
ConcentricDistance: double;
The ConcentricDistance property determines the distance between concentric circles.
Default distance is zero.
This example assumes that there is the Chart object of the IChart type. You need a pie chart for this example. If required, the chart can be converted to a pie one by running the command: "Chart.Type := 5 As ChartType"
Add a link to the Chart system assembly.
Sub Concentric;
Var
Chart: IChart;
Begin
Chart.CircleInfo.ConcentricDistance := 3;
End Sub Concentric;
After executing the example the specified distance is set between the concentric circles.
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.ConcentricDistance := 3;
End Sub;
See also: