Skip to content Skip to sidebar Skip to footer

Bar-chart's Issues In Android

Has any one met the below issue on your logcat? Here i am trying to create a barchart in android with the help of achartengine library.But the problem is i am getting the x and y a

Solution 1:

It looks like a simple issue here even though the question is not describing all the aspects.

We can easily guess that line 46 in the main activity class is the one below:

in.putExtra("gotonextpageX", result.get(0));

The result list has no elements in it and you are trying to get the first one, so the IndexOutOfBounds exception is thrown.

Post a Comment for "Bar-chart's Issues In Android"