Tan Jing Yuan
Tan Jing Yuan

Reputation: 73

GraphView label font size and spacing

Add space between graph and tick labels in GraphView? answers how to add a space between the graph and axis labels

Android graph view has an answer which says it is possible to change the font size of axis labels.

However it seems those functionalities have been removed. are there any plans to reinstate them? Alternatively, are there currently ways to change the font size and spacing?

Thanks!

Upvotes: 1

Views: 3819

Answers (1)

Igor Vydrenkov
Igor Vydrenkov

Reputation: 41

I change the label's text size in this way:

graph.getGridLabelRenderer().setTextSize(6f);
graph.getGridLabelRenderer().reloadStyles();

Upvotes: 4

Related Questions