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
Example:
x := -10.0 to: 20.0 count: 100. chart := RSChart new add: (RSScatterPlot new x: x y: (x raisedTo: 3)); add: (RSLinePlot new x: x y: (x raisedTo: 2)); removeAxisLines; yourself.
Expected result (something like this):
x := -10.0 to: 20.0 count: 100. chart := RSChart new add: (RSScatterPlot new x: x y: (x raisedTo: 3)); add: (RSLinePlot new x: x y: (x raisedTo: 2)); removeTopAxisLine; removeRightAxisLine; yourself.
Expected result:
x := -10.0 to: 20.0 count: 100. chart := RSChart new add: (RSScatterPlot new x: x y: (x raisedTo: 3)); add: (RSLinePlot new x: x y: (x raisedTo: 2)); removeTopAxisLine; removeLeftAxisLine; yourself.
The text was updated successfully, but these errors were encountered:
moved to pharo-graphics/Roassal
Sorry, something went wrong.
No branches or pull requests
Example:
Expected result (something like this):
Expected result:
The text was updated successfully, but these errors were encountered: