We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello and thanks for sharing this 3d Chart library :-)
In method axisChanged() of xyzPlot (line 682) we have :
public void axisChanged(Axis3DChangeEvent event) { this.yAxis.configureAsYAxis(this); fireChangeEvent(event.requiresWorldUpdate()); }
Shouldn't it be :
public void axisChanged(Axis3DChangeEvent event) { if(xAxis == event.getAxis()) xAxis.configureAsXAxis(this); if(yAxis == event.getAxis()) yAxis.configureAsYAxis(this); if(zAxis == event.getAxis()) zAxis.configureAsZAxis(this); fireChangeEvent(event.requiresWorldUpdate()); }
This is actually what I've done and it solved bad axis range.
https://github.com/jfree/orson-charts/blob/master/src/main/java/org/jfree/chart3d/plot/XYZPlot.java
The text was updated successfully, but these errors were encountered:
I think you are correct. I will write some JUnit tests to prove it.
Sorry, something went wrong.
Fix for issue #9.
5733e57
Fixed for the upcoming 2.1.0 release. Thanks for reporting it.
jfree
No branches or pull requests
Hello and thanks for sharing this 3d Chart library :-)
In method axisChanged() of xyzPlot (line 682) we have :
Shouldn't it be :
This is actually what I've done and it solved bad axis range.
https://github.com/jfree/orson-charts/blob/master/src/main/java/org/jfree/chart3d/plot/XYZPlot.java
The text was updated successfully, but these errors were encountered: