gorteganesh / achartengine

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

FillBelowLineColor: add option for values less than 0 #52

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

i really enjoy your work!

it would be great to extend the filling to different colors below zero.
for example 

setFillBelowLineColor(Color.GREEN)
setFillBelowLineColorNegative(Color.RED)

maybe you can add that in a later release.

greetings
jonas

Original issue reported on code.google.com by jonas.br...@gmail.com on 22 Feb 2011 at 3:41

GoogleCodeExporter commented 9 years ago
in line charts

Original comment by jonas.br...@gmail.com on 22 Feb 2011 at 3:49

GoogleCodeExporter commented 9 years ago
I'd suggest this issue merged with Issue 69.

Original comment by zvasv...@gmail.com on 30 Mar 2011 at 9:07

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 13 Apr 2011 at 5:00

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 1 Jun 2011 at 4:38

GoogleCodeExporter commented 9 years ago

Original comment by dandrome...@gmail.com on 7 Jun 2011 at 6:51

GoogleCodeExporter commented 9 years ago
Issue 58 has been merged into this issue.

Original comment by dandrome...@gmail.com on 7 Jun 2011 at 6:51

GoogleCodeExporter commented 9 years ago
Added new APIs for this, example below:

    FillOutsideLine fill = FillOutsideLine.BOUNDS_BELOW;
    fill.setColor(Color.MAGENTA);
    seriesRenderer.addFillOutsideLine(fill);
    fill = FillOutsideLine.BOUNDS_ABOVE;
    fill.setColor(Color.GREEN);
    seriesRenderer.addFillOutsideLine(fill);

You can download a version including this feature here: 
https://repository-achartengine.forge.cloudbees.com/snapshot/org/achartengine/ac
hartengine/1.1.0/

Original comment by dandrome...@gmail.com on 8 Feb 2013 at 11:33