Bubble value displayed within the bubble itself

TeeChart for ActiveX, COM and ASP
Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Aug 24, 2006 11:01 am

Hi Chuck,

I've just created a new example using TeeChart Pro v7 ActiveX in an ASP.NET application doing what you requested and works fine for me. I've already sent you this example. Could you please test if it works at your end?

Another option to display the radius in the marks would be adding the radius as the label of each point when populating the series. Also, with the latest TeeChart version available at our Customer Download Area you can change the Marks individually doing something like this:

Code: Select all

Dim s As String
Private Sub Form_Load()
With TChart1
    .AddSeries scBubble
    .Series(0).FillSampleValues (5)
    .Series(0).Marks.Visible = True
    For i = 0 To .Series(0).Count - 1
        s = i
       .Series(0).Marks.Item(i).Text.Add ("Cust.M " + s)
    Next i
End With
End Sub

Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply