ibrahimsaputra / achartengine

Automatically exported from code.google.com/p/achartengine
0 stars 0 forks source link

Feature : Underfill color per point #42

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I need to change the underfill color per point on my graph.
Currently I am getting around this by doing multiple series and cleverly 
placing them however an inbuilt feature would be great.

Original issue reported on code.google.com by chris.fo...@gmail.com on 24 Jan 2011 at 3:41

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 3 Feb 2011 at 12:14

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 30 May 2011 at 5:54

GoogleCodeExporter commented 9 years ago
Can you please direct me to a screenshot image such as I understand how this 
looks like?

Original comment by dandrome...@gmail.com on 15 Jan 2013 at 1:55

GoogleCodeExporter commented 9 years ago
Can anyone please direct me to a screenshot image such as I understand how this 
looks like?

Original comment by dandrome...@gmail.com on 8 Feb 2013 at 12:26

GoogleCodeExporter commented 9 years ago
See here : http://android.ultimatevaluediary.com/screenshots/graph/
I had to create multiple graphs and overlay them.

Thanks

Original comment by chris.fo...@gmail.com on 8 Feb 2013 at 1:29

GoogleCodeExporter commented 9 years ago
Thanks for your patience on this feature. It is finally available:

fill = new FillOutsideLine(FillOutsideLine.Type.BOUNDS_ABOVE);
fill.setColor(Color.argb(255, 0, 200, 100));
// the minimum and maximum index values for the fill range
fill.setFillRange(new int[] {10, 19});
xyRenderer.addFillOutsideLine(fill);

A binary including this feature is available here: 
https://repository-achartengine.forge.cloudbees.com/snapshot/org/achartengine/ac
hartengine/1.1.0/

Original comment by dandrome...@gmail.com on 5 Apr 2013 at 1:14