Coloring area under the curve in achartengine in android
android, android-canvas, android-view, charts, java
Solution
This should be as simple as:
FillOutsideLine fill = new FillOutsideLine(FillOutsideLine.Type.BOUNDS_ALL);
fill.setColor(Color.GREEN);
seriesRenderer.addFillOutsideLine(fill);
Problem
how to color the area under the curve in worm chart line of achartengine for android.