Radius: Double;
The Radius property specifies radius of a connector. The value is set in fractions of minimum radius of a point in the group, the values lie within the range [0.0;1.0].
The default value of this property is 0.2.
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: