Re: BarChart[{1,2},Frame->True]
- To: mathgroup at smc.vnet.net
- Subject: [mg84075] Re: BarChart[{1,2},Frame->True]
- From: Norbert Marxer <marxer at mec.li>
- Date: Sun, 9 Dec 2007 06:35:10 -0500 (EST)
- References: <fjdsn7$j1u$1@smc.vnet.net>
On 8 Dez., 11:47, "Solomon, Joshua" <J.A.Solo... at city.ac.uk> wrote:
> Here is some extremely simple code that doesn't work in version 6.0.1:
> BarChart[{1,2},Frame->True]
> That's it! Note:
> BarChart[{1,2}]
> and
> BarChart[{1,2,3},Frame->True]
> work fine. Surely, this is some kind of bug!
> j
Hello
It looks like a bug and the culprit seems to be FrameTicks. If you use
one of the following ...
Needs["BarCharts`"]
BarChart[{1, 2}, Frame -> True, FrameTicks -> True]
BarChart[{1, 2}, Frame -> True, FrameTicks -> Automatic]
BarChart[{1, 2}, Frame -> True, FrameTicks -> All]
... it works nicely.
Best Regards
Norbert Marxer