You only need the addin to setup the original chart.
Here is code to do it
Sub DummyAxisLabels()
Dim lngItem As Long
Dim objDLabel As DataLabel
Set rngtext = ActiveSheet.Range("D35:D40")
With ActiveSheet.ChartObjects("FeverChart").Chart
With .SeriesCollection("AxisLabels")
.Values = ActiveSheet.Range("C35:C40")
.XValues = ActiveSheet.Range("B35:B40")
.ApplyDataLabels
For Each objDLabel In .DataLabels
objDLabel.Text = "=" & rngtext.Cells(lngItem, 1).Address(, , xlR1C1)
Next
End With
End With
End Sub
Bookmarks