I m a newbie so please excuse if my question sounds too trivial. I am trying to get the labels on a Radar chart. Here's my VB code to add the Radar series & populate the points in the chart.
Code: Select all
LoChart.Legend.Visible = True
LoChart.AddSeries scRadar
With LoChart.Series(0)
.Title = "Company/User"
.Add 25, "hello", vbRed
.Add 35, "ping", vbRed
.Add 45, "pong", vbRed
.Add 55, "bingo", vbRed
.Add 65, "world", vbRed
.Add 75, "he he", vbRed
.Color = vbRed
End With
thanks in advance!
-DELINV