I copied your code for ListViewMultiChartActivity. Copied every single class and put it in my project everything draws fine except the animations of the Graphs when they are first painted. Yours animate and fill mine are drawn immediately with no animations. Why? Is there something that sets these globally that I am missing?
chart.animateXY(2000, 2000);
Found out it was a proguard issue needed to add this to our proguard file
-keep class com.github.mikephil.charting.** { *; }
Most helpful comment
Found out it was a proguard issue needed to add this to our proguard file
-keep class com.github.mikephil.charting.** { *; }