How to remove draw value in barChart
I am using the complex barchart of the MPAndroidChart library. Does anyone know how to remove the value that appears at the top of each panel?
+3
Jak
source
to share
1 answer
Yes, you can remove values by calling:
barData.setDrawValues(false)
This is also in the documentation: https://github.com/PhilJay/MPAndroidChart/wiki/The-ChartData-class
+2
Philipp jahoda
source
to share