How to display Tooltip on each bubble (in bubble chart)

P

Pa Ji

Hi There,

Thanks for help in advance

I'm trying to display tooltip in each different bubble( of same
series) in buble chart as below:

Following example displays 2 bubble. I would like to have diffeenet tooltip
for each bubble gererated. But the following example display same tooltip
for both of the bubble
With oChart.SeriesCollection.Add
.Caption = "Queue B"
.SetData c.chDimXValues, c.chDataLiteral, _
Array(5, 6)
.SetData c.chDimYValues, c.chDataLiteral, _
Array(3.2, 4.6)
.TipText = "This is a tooltip"
End With
 
T

Thao Moua [ms]

Setting the .TipText applies to the entire series. If
you want robust control over the screen tip, use the
BeforeScreenTip() event.

Thao Moua
OWC Webchart Support
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top