hellocharts-android icon indicating copy to clipboard operation
hellocharts-android copied to clipboard

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

Open joancolmenerodev opened this issue 5 years ago • 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.

joancolmenerodev avatar Apr 28 '19 22:04 joancolmenerodev

Solved it doing:

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

joancolmenerodev avatar Apr 28 '19 23:04 joancolmenerodev