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