Hi Hill,
Yes. You may use CDML to put images on top of the bars. For example, in VB/VBScript:
'The images you want to use. If you are using IIS, remember to use Server.MapPath to
'translate the URL path into file system path.
images = Array("\\path\\to\\aaa.png", "\\path\\to\\bbb.png", "\\path\\to\\aaa.png", ....)
Set layer = c.addBarLayer3(myData)
'add the image path names as an extra field of the bars
Call layer.addExtraField(images)
'put images in the aggregate label position, in which the image path name is taken from the extra field
Call layer.setAggregateLabelFormat("<*img={field0}*>")
Hope this can help.
Regards
Peter Kwan |