IBubbleSeries.AddBubble
IBubbleSeries

function AddBubble(AX, AY, ARadius: Double; Const AXLabel: WideString; Value: OLE_COLOR): Integer;

Type Library
TeeChartx

Description
The AddBubble method appends a new Bubble point to the Series Points List. The Bubble point is assigned to be at AX,AY coordinates and have ARadius, Label and Color parameters. The Label parameter is used to draw Axis Labels, Bubble Marks and Legend.

Example

This example randomly creates bubble values.

Example [Visual Basic]:

Dim t As Integer

With TChart1

.Series(0).Clear

For t = 1 To 10

.Series(0).asBubble.AddBubble t, Rnd(2), Rnd(5), "", _

RGB(255 * Rnd, 128 * Rnd, 255 * Rnd)

Next t

End With