Hi Ray,
There are several methods. For your case, I think the simplest method is to use the Layer.addCustomGroupLabel (for labels outside the bar) or Layer.addCustomDataLabel (for labels inside the bar). For example, in VB/VBScript, it is like:
For i = 0 To UBound(labels)
myLabel = .... compute the text label ....
Call layer.addCustomGroupLabel(2, i, myLabel, "arial.ttf", 8, &H000000)
Next
Hope this can help.
Regards
Peter Kwan |