lecho / hellocharts-android

Charts library for Android compatible with API 8+, several chart types with scaling, scrolling and animations 📊
Apache License 2.0
7.43k stars 1.61k forks source link

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

Open joancolmenerodev opened 5 years ago

joancolmenerodev commented 5 years ago

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 commented 5 years ago

Solved it doing:

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