jramirez
jramirez

Reputation: 484

How to make the text bigger in aChartEngine?

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.

enter image description here

Upvotes: 2

Views: 350

Answers (1)

Ram kiran Pachigolla
Ram kiran Pachigolla

Reputation: 21201

you can set label text size as follows

 mRenderer.setLabelsTextSize(15); // 15

Example is here

Upvotes: 3

Related Questions