I have the rather specific final List<PieEntry> entries = new ArrayList<>();
(PieEntry is of MPAndroidChart) and I want to pass it to another fragment where it is then diplayed in a chart.
I have tried a number of ways like parsing
it, but everytime I run the application the piechart seems to have no data to fill itself. (Maybe I didn't do it correctly because the explanation wasn't in depth enough for me).
I backwards tested it, so everything up until the array is fine, for example I can draw the chart in the first fragment and everything works.
Maybe I left some details out, or maybe I am going in the completely wrong direction?