IScene3DNamedSphereGroup.Radius

Syntax

Radius: Double;

Description

The Radius property determines a connector radius. The value is set in parts of the minimum radius of a point in the group, available values are within the range [0.0;1.0].

The property is set to 0.2 by default.

Example

This example assumes that there is the object S of the IScene3D type.

Sub Chart3D;
Var
    s : IScene3D;
    SpG : IScene3DNamedSphereGroup;
Begin
    s.DisplayedObjects.NamedSphereGroups.Count := 1;
    s.DisplayedObjects.NamedSphereGroups.Item(0).SphereCount := 3;
    SpG := s.DisplayedObjects.NamedSphereGroups.Item(0);
    Spg.Radius := 0.4;
End Sub Chart3D;

After executing the example value of the connector radius is changed to the specified one.

See also:

IScene3DNamedSphereGroup