Reputation: 1339
I am using the Charts framework (danielgindi/Charts). My line chart is not showing all of the text on the x-axis on the last value. See image below.
How can I ensure that the whole text is shown?
Upvotes: 0
Views: 1706
Reputation: 480
Other way: chartView.xAxis.setLabelsToSkip(0)
Upvotes: -1
chartView.xAxis.avoidFirstLastClippingEnabled = true
Upvotes: 3