lecho/hellocharts-android

Text size on tablets are small, how to change it?

joancolmenerodev opened this issue · 1 comments

I've tried to change the size doing : valueTableTextSize() but looks like it's not changing, is there any way to change the size or do it a little bit bigger?
Also tried doing :

columnData!!.axisYLeft = Axis()
.setHasLines(true)
.setAutoGenerated(true)
.setValues(example)
.setTextColor(Color.BLACK)
.setTextSize(20)

But it doesn't work.

Solved it doing:

columnData!!.axisYLeft.textSize = 25
columnData!!.axisXBottom.textSize = 25