hellocharts-android
hellocharts-android copied to clipboard
Text size on tablets are small, how to change it?
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