Consulting

Results 1 to 3 of 3

Thread: Solved: How to add a data label to a bubble in a chart?

  1. #1

    Solved: How to add a data label to a bubble in a chart?

    Hi,

    I have a sheet with a graph/chart called "chart1" with 8 points/bubbles that I would like to name with a data label. Can you help me please?

    The graph exists with the default name "chart1" and the data labels are on B10:B15.

    [VBA]
    Sub assign_Names()

    For i = 10 To 15
    Chart1.SeriesCollection.Select
    With Chart1.SeriesCollection(i)

    .Name = ActiveSheet.Cells(i, 2).Value

    End With
    Next i

    End Sub
    [/VBA]


    Thanks!

  2. #2
    Hi,
    Nobody replied so I guess my description was rather poor... Basically, I have a graph with bubbles and I would like to add a name at the top of each bubble. Any hint in how could I do it? Thanks!!!!!!!!!!

  3. #3
    Solved. On the meantime I found the answer here: http://www.appspro.com/Utilities/ChartLabeler.htm

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •