I have made a simple Line graph with the lower region coloured.
FillOutsideLine fill = new FillOutsideLine(FillOutsideLine.Type.BOUNDS_ALL);
fill.setColor(getResources().getColor(R.color.graph_green));
renderer.addFillOutsideLine(fill);
It's working fine if the data points remain in the visible region.
As soon as a point goes beyond/above the visible region - the line over the coloured region jumps.
I'm guessing it's the problem of the library.
Anyone else faced this issue and is there any workaround to solve this problem?