Re: BarChart3D with labels
- To: mathgroup at smc.vnet.net
- Subject: [mg21334] Re: [mg21326] BarChart3D with labels
- From: BobHanlon at aol.com
- Date: Sun, 26 Dec 1999 01:26:12 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
I believe this is what you want:
Needs["Graphics`Graphics`"];
lst1 = 20*Table[Random[], {5}];
BarChart[lst1,
BarLabels ->
Table["Group " <> ToString[k], {k, Length[lst1]}],
Prolog ->
Table[
Text[NumberForm[lst1[[k]], {4, 2}], {k, lst1[[k]]}, {0, -1}],
{k, Length[lst1]}],
PlotRange -> All];
Bob Hanlon
In a message dated 12/24/1999 5:11:36 AM, balakrsna108 at my-deja.com writes:
>I have following problem:
>
>In need to have some BarCharts and the on-line manual gives an example
>for 2D Bar chart with L A B E L S, (I do not mean axis).
>My version is Math 3 for Linux, and the printed book gives nothing.
>
>My bar charts should always looks alike
>
> value1 value2 value3 value4
>
>"Group1" "Group2" and so on.
>
>Does someone know howto print it
>