Hi Divya,
Yes. There are several methods. One method is to use Axis.addMark, like (as I am not sure of your programming language, I will use Java/C# in the following example):
c.yAxis().addMark(0, -1, "0%", "Arial Bold", 8).setMarkColor(0xcccccc, 0x000000, 0x000000);
c.yAxis().addMark(100, -1, "100%", "Arial Bold", 8).setMarkColor(0xcccccc, 0x000000, 0x000000);
(Note: For other editions of ChartDirector, the font name may need to be specified as "arialbd.ttf".)
Hope this can help.
Regards
Peter Kwan |