Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for secondary axes in XYPlot missing #33

Closed
eseifert opened this issue Mar 30, 2015 · 1 comment
Closed

Support for secondary axes in XYPlot missing #33

eseifert opened this issue Mar 30, 2015 · 1 comment
Milestone

Comments

@eseifert
Copy link
Owner

XYPlot provides constants for secondary axes (XYPlot.AXIS_X2 and XYPlot.AXIS_Y2) but currently adding doesn't work correctly. The plot will display the axis but only on top left of the plot graphics.

The behavior is reproducible using the following code:

Axis y2 = new Axis(0, 24);
plot.setAxis(XYPlot.AXIS_Y2, y2);
LinearRenderer2D renderer = new LinearRenderer2D();
plot.setAxisRenderer(XYPlot.AXIS_Y2, renderer);

Support for secondary axis should be added

Imported from trac ticket 30, created by eseifert on 04-15-2011 at 22:45, last modified: 04-15-2011 at 22:47

@eseifert eseifert added this to the 0.9 Release milestone Mar 30, 2015
@eseifert
Copy link
Owner Author

Added basic support for secondary axes to XYPlot in r353.

Trac comment by eseifert on 04-15-2011 at 22:47

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant