Hi Sethu,
To add the star symbol, you may use a scatter layer (which allows you to add any symbol
at any position). For example:
BarLayer bLayer = c.addBarLayer(.....);
ScatterLayer sLayer = c.addScatterLayer(null, myAverageValues, "Average",
Chart.StarShape(5), 17, 0xffff00);
To make the ticks point internal to the plot area, you may use a negative tick length. For
example:
c.xAxis().setTickLength(-10);
Hope this can help.
Regards
Peter Kwan |