Closed GoogleCodeExporter closed 9 years ago
even for the original library, the grid messes up once you have more than one
axis. Is there any workaround for that?
Original comment by subayya...@gmail.com
on 20 Mar 2012 at 2:51
In patch format done on top of 1.0.0
Original comment by jc.pazza...@gmail.com
on 4 Apr 2012 at 6:47
Attachments:
Can you tell me how I use this patch? Another enhancement would be the same
funtionality for the X-axis...
Original comment by jeens...@gmail.com
on 4 May 2012 at 7:11
1 -patch the code (from 1.0.0)
2 -genereate a new jar
3 - modify the renderer as explained
renderer.addUserYGrid(new UserYGrid("Freezing",0.0,
Color.BLUE,BasicStroke.DASHED));
renderer.addUserYGrid(new UserYGrid("Boiling",100.0,
Color.RED,BasicStroke.DASHED));
renderer.setShowUserYGrid(true);
voila !
Original comment by jc.pazza...@gmail.com
on 7 May 2012 at 2:15
A few comments about the provided patch:
* what is line #44?
* Why does GraphicalView return a reference to the chart?
* This is an XY charts specific feature. Why is this stuff set in the
DefaultRenderer instead of XYMultipleSeriesRenderer?
* Why is the code less documented than the main ACE code?
Original comment by dandrome...@gmail.com
on 12 May 2012 at 11:43
Instead of adding new code, you can do this with the existing APIs. Example:
renderer.setShowCustomTextGrid(true);
renderer.addXTextLabel(7.5, "");
renderer.addYTextLabel(7.5, "");
Original comment by dandrome...@gmail.com
on 16 Jun 2012 at 2:01
Original issue reported on code.google.com by
jc.pazza...@gmail.com
on 12 Mar 2012 at 10:03Attachments: