We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
xformatter
groupedbar()
x
y
group
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
It seems that the xformatter attribute has no effect when the x, y, group method is used in groupedbar():
It works here:
using Plots using StatsPlots gr() groupedbar( rand(10, 3), xformatter=_ -> "" )
But not here:
ctg = repeat(["A", "B"], inner=5) nam = repeat("G" .* string.(1:5), outer=2) groupedbar( nam, rand(5, 2), group=ctg, xformatter=_ -> "", )
To clarify, the G1, G2, etc labels should not be shown in the second case I think.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that the
xformatter
attribute has no effect when thex
,y
,group
method is used ingroupedbar()
:It works here:
But not here:
To clarify, the G1, G2, etc labels should not be shown in the second case I think.
The text was updated successfully, but these errors were encountered: