-
Notifications
You must be signed in to change notification settings - Fork 36
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
BarChart Not Working Properly #173
Comments
Looks like PGFPlots does not add the
|
The problem with this solution is that I would like to make a grouped bar chart by pushing multiple BarCharts onto a single Axis. One solution is to manually set ybar in the latex code but is there another solution? |
You can create the Axis using my method with the first bar chart, and then push on additional bar charts to that axis. |
Your method returns an object of type |
fig = PGFPlots.Axis()
push!(fig, PGFPlots.Plots.BarChart([1,2]))
PGFPlots.save("test_bar.pdf", fig)
produces
The text was updated successfully, but these errors were encountered: