Thanx
> How can I make axes more thick ?
>
Options[Plot]
?AxesStyle
Plot[x^2, {x,0,5}, AxesStyle->AbsoluteThickness[2]];
Bob Hanlon
Plot[Sin[x], {x, 0, 2Pi}, AxesStyle -> {AbsoluteThickness[25]},
Frame -> False]
ist this thick enought ?
Regards
Jens
Add an AxesStyle option.
Plot[x^3, {x, -1, 1},
PlotRange -> All,
AxesStyle -> AbsoluteThickness[2],
ImageSize -> 400];
But does that really look better? The main information is the curve. Should
the axes dominate over the curve? Edward R. Tufte in his books on graphics
uses the principle of "minimum effective difference" for ancillary
information. Using the minimum effective difference for ancillary
information leaves more graphical space for the main information to shine
through. According to that, the axes should be softened and not emphasized.
Something like this...
Plot[x^3, {x, -1, 1},
PlotRange -> All,
Frame -> True,
Axes -> True,
AxesStyle -> GrayLevel[0.75],
ImageSize -> 400];
David Park
dj...@earthlink.net
http://home.earthlink.net/~djmp/