Reputation: 484
I use aChartEngine in my app, but I've a problem, the XLabels' text is unreadable, they've a short size and are confused with the bar. How can I make bigger the text and move them a bit to the right? This is an image of my GraphicView.
Upvotes: 2
Views: 350
Reputation: 21201
you can set label text size as follows
mRenderer.setLabelsTextSize(15); // 15
Example is here
Upvotes: 3