Labels in a Radar chart
Posted: Fri Mar 14, 2008 11:41 am
Hello,
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.
After this, a hexagon shaped Radar chart is generated. What I would like is to have the label texts "hello", "ping", "pong", etc, added above, to appear in the six corners of the hexagon. Is it possible? I tried various things like setting properties of Axis.Bottom.Labels, Axis.Bottom.Title, etc. Nothing seems to work.
thanks in advance!
-DELINV
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