Re: BarChart, Bar Labels disappear
- To: mathgroup at smc.vnet.net
- Subject: [mg26371] Re: [mg26338] BarChart, Bar Labels disappear
- From: BobHanlon at aol.com
- Date: Wed, 13 Dec 2000 02:41:28 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`Graphics`"];
DisplayTogether[
BarChart[{-12, -18, -12, -7},
BarLabels -> {"< 1%", "1%-2%", "2%-3%", ">3%"}],
BarChart[ {8, 18, 14, 10}, BarStyle -> {RGBColor[0, 0, 1]}],
Frame -> True];
Bob Hanlon
In a message dated 12/12/00 3:31:41 AM, Matthias.Bode at oppenheim.de writes:
>with
><< Graphics`Graphics`
>
>this
>
>Show[BarChart[{-12, -18, -12, -7},
> BarLabels -> {"< 1%", "1%-2%", "2%-3%", ">3%"}],
> BarChart[ {8, 18, 14, 10}, BarStyle -> {RGBColor[0, 0, 1]},
> BarLabels -> {"< 1%", "1%-2%", "2%-3%", ">3%"}]]
>
>produces three bar charts.
>Only the second one shows the bar labels.
>I need the bar labels in the combined chart along the x-axis. How?
>