Hi kord,
You may use Axis.addLabel to add custom labels on the axis. For example, in VB/VBScript, it is like:
'add a label xxx at x=260
Call c.xAxis().addLabel(260, "xxx")
You may use CDML to configure the label to have a different font or style, like:
Call c.xAxis().addLabel(260, "<*font=arialbd.ttf,color=CC0000*>xxx")
Hope this can help.
Regards
Peter Kwan |