S
sxzy
Set label = series.DataLabelsCollection.Add
label.HasSeriesName = true
This will show series name (e.g. "Series1") for every data point in the
whole series. (can get very ugly!!)
To make things clean I would like to show series name only on ONE
particular data point - let's say 5th data point. In Excel this is
possible, how about OWC chart? I've spent hours.
I guess what I'm trying to do is this:
Set label = series.Points(4).DataLabelsCollection.Add
lab.HasSeriesName = true
But that doesn't work. What to do?
Thanks,
Sergey
label.HasSeriesName = true
This will show series name (e.g. "Series1") for every data point in the
whole series. (can get very ugly!!)
To make things clean I would like to show series name only on ONE
particular data point - let's say 5th data point. In Excel this is
possible, how about OWC chart? I've spent hours.
I guess what I'm trying to do is this:
Set label = series.Points(4).DataLabelsCollection.Add
lab.HasSeriesName = true
But that doesn't work. What to do?
Thanks,
Sergey