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
As you can see by running the following code, Coord.cartesian(ymin=1.5, ymax=2.6) does not work.
Coord.cartesian(ymin=1.5, ymax=2.6)
using Gadfly, DataFrames df = DataFrame(:AAA=>[2.2, 1.8, 2.0, 2.3, 1.8, 1.9], :BBB=>[1, 2, 3, 1, 2, 3], :CCC=>["#", "#", "#", "&", "&", "&"]) p = Gadfly.plot(df, x=:CCC, y=:AAA, xgroup=:BBB, color=:CCC, Geom.subplot_grid(Geom.bar(position=:dodge), Coord.cartesian(ymin=1.5, ymax=2.6)), Gadfly.Theme(alphas=[1.0], discrete_highlight_color=identity))
The text was updated successfully, but these errors were encountered:
i can confirm that ymin is ignored, but curiously ymax works, and both work for Geom.bar without Geom.subplot_grid.
ymin
ymax
Geom.bar
Geom.subplot_grid
Sorry, something went wrong.
See also #730
No branches or pull requests
As you can see by running the following code,
Coord.cartesian(ymin=1.5, ymax=2.6)
does not work.The text was updated successfully, but these errors were encountered: