Page 1 of 1

AddBubble question.

Posted: Wed Oct 13, 2010 7:15 pm
by 9530487
Hello,

What is the radius for AddBubble measured in?

And it is possible to access it from the chart editor?

Thanks in advance,

Tony.

Re: AddBubble question.

Posted: Fri Oct 15, 2010 8:21 am
by narcis
Hi Tony,
What is the radius for AddBubble measured in?
This is measured in series/axes values, for example:

Code: Select all

    TChart1.Series(0).asBubble.AddBubble 5, 5, 5, "", clTeeColor
Using this code you'll get a bubble centered at 5, 5 and going from 0 to 10 both in X and Y directions.
And it is possible to access it from the chart editor?
Yes, at the Data tab in the editor.

Re: AddBubble question.

Posted: Fri Oct 15, 2010 8:36 am
by 9530487
It all makes sense now. Many thanks.

Tony.