Hi,
I need your help.
Does anyone know what the unit is for the bubbles series radius?
It seems sensitive to the X and Y values.
Is there a way to make the radius the same regardless of X and Y values?
Thanks.
-T
Bubbles radius units
Hi,
yes, sorry for delay, you could use :
Also, an alternative is to use a Point Series instead, change its pointer style to Circle and set the desirable heigth and width.
yes, sorry for delay, you could use :
Code: Select all
For i = 0 To TChart1.Series(0).asBubble.RadiusValues.Count - 1
TChart1.Series(0).asBubble.RadiusValues.Value(i) = 50
Next i
Pep Jorge
http://support.steema.com
http://support.steema.com
Thanks for the reply.
I guess my question was not clear.
I was able to set the radius to the same size for all bubbles in a series using
TChart1.GetSeries(0).GetAsBubble().AddBubble(xValue,yValue,100,someLabel,RGB(0,0,255));
What went wrong was when the yValue was too large (600,000,000), the bubbles all disappeared. Is there a way to make bubbles radius in pixels so that they will stay visible all the time?
My workaround is to set the radius to be some percentage of the Y value. I am wondering if there is a better way.
-T
I guess my question was not clear.
I was able to set the radius to the same size for all bubbles in a series using
TChart1.GetSeries(0).GetAsBubble().AddBubble(xValue,yValue,100,someLabel,RGB(0,0,255));
What went wrong was when the yValue was too large (600,000,000), the bubbles all disappeared. Is there a way to make bubbles radius in pixels so that they will stay visible all the time?
My workaround is to set the radius to be some percentage of the Y value. I am wondering if there is a better way.
-T
Hi,
I'm afraid there's no way to set the radius in pixels. Other workaround could be to manually draw circles at every X,Y point on pointer repaint event.
I'm afraid there's no way to set the radius in pixels. Other workaround could be to manually draw circles at every X,Y point on pointer repaint event.
Pep Jorge
http://support.steema.com
http://support.steema.com