ISeries.asBubble3D
ISeries
property asBubble3D: IBubble3DSeries;
Type Library
TeeChartx
Description
The asBubble3D property is used by the Series Class to access Bubble3D Series specific properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.
eg. 'TChart1.Series(x).asBubble3D.RadiusValues.Value( 0 )=35'.
Example [Visual Basic]:
With TChart1.Series( 0 )
.Clear
For t = 1 To 10
.asBubble.AddBubble3D t, Rnd( 2 ), Rnd(5), "", RGB(255 * Rnd, 128 * Rnd, 255 * Rnd)
Next t
End With