ISeries.asBubble
ISeries

property asBubble: IBubbleSeries;

Type Library
TeeChartx

Description
The asBubble property is used by the Series Class to access Bubble Series specific properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.

eg. 'TChart1.Series(x).asBubble.RadiusValues.Value( 0 )=35'.

Example [Visual Basic]:

With TChart1.Series( 0 )

.Clear

For t = 1 To 10

.asBubble.AddBubble t, Rnd( 2 ), Rnd(5), "", RGB(255 * Rnd, 128 * Rnd, 255 * Rnd)

Next t

End With