 
 
 
 
 
 
Re: thickness and fonts of axes & labels
- To: mathgroup at smc.vnet.net
- Subject: [mg30676] Re: [mg30667] thickness and fonts of axes & labels
- From: BobHanlon at aol.com
- Date: Sat, 8 Sep 2001 02:22:17 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 2001/9/3 9:03:03 PM, hvdosten at lb.netic.de writes:
>it would be great if it would be able to modify the axes of plots (-->
>publications).
>
>Is it possible to change the thickness of 2-D and 3-D axes? And is it
>also possible to set some font options for them (changing the family,
>the size and the weight of the fonts of the axes)? Obviously this must
>be done with some global settings, because no command (for example
>FontWeight -> "Bold") seems to be compatible with the build-in
>functions.
>
Needs["Graphics`Colors`"];
Needs["Graphics`Graphics`"];
Plot[Sin[x], {x, 0, 2Pi}, 
    AxesStyle -> {{Red, AbsoluteThickness[2]}, {Blue}}, 
    DefaultFont -> {"Geneva-Bold", 12}, 
    Ticks -> {PiScale, Automatic}];
Bob Hanlon
Chantilly, VA  USA

