Re: Rotated X-Labels
- To: mathgroup at smc.vnet.net
- Subject: [mg48756] Re: [mg48752] Rotated X-Labels
- From: "Florian Jaccard" <florian.jaccard at eiaj.ch>
- Date: Mon, 14 Jun 2004 03:14:19 -0400 (EDT)
- Reply-to: <florian.jaccard at eiaj.ch>
- Sender: owner-wri-mathgroup at wolfram.com
Hello !
Yes, I already had the rpoblem.
Here a possibility :
effectifs = {3, 5, 9, 12, 5, 4, 2};
tailles = {"118-126", "127-135", "136-144", "145-153",
"154-162", "163-171", "172-180"};
<< "Graphics`Graphics`"
g1 = BarChart[Transpose[{effectifs, tailles}],
DisplayFunction -> Identity];
g2 = FullGraphics[g1] /. Text[a_String, b_, c_] ->
Text[a, b, {1, 1}, {2, 1}];
Show[g2, PlotRange -> All, Epilog ->
{Text["taille [cm]", {9, 0}], Text["effectifs",
{0, 14}]}];
Regards
F.Jaccard
-----Message d'origine-----
De : Bruce W. Colletti [mailto:bcolletti at compuserve.com]
Envoyé : dim., 13. juin 2004 05:34
À : mathgroup at smc.vnet.net
Objet : [mg48752] Rotated X-Labels
Does Mathematica 5.0.1.0 now have a graphics option that rotates x-tick
labels?
I'm using GeneralizedBarChart and these labels are crunched together.
Thankfully, I've found a MathGroup posting that has allowed me to rotate
the labels.
However, I'm hoping Wolfram has built such an option.
Thanks.
Bruce