Creating a BarChart with {1, 2, 3, 0} as
BarChart[{1, 2, 3, 0}, Axes -> False, Frame -> True]
gives me only the first three bars, a chart identical to just
BarChart[{1, 2, 3}, Axes -> False, Frame -> True]
Is this an intended behaviour or a bug?
(Originally I asked for a workaround. I think I can just use
Axesinstead ofFrame. Let me ask this instead for the sake of knowledge.) What to do if I needFramebut notAxes?
I'm using Mathematica 9.





BarChart[{1, 2, 3, 0}, AxesStyle -> Directive[Opacity[0]], Frame -> True]. There must be a smarter way - – Pinguin Dirk Apr 04 '13 at 11:23