Re: How do I set PlotRegion value permantly?
- To: mathgroup at smc.vnet.net
- Subject: [mg90907] Re: How do I set PlotRegion value permantly?
- From: mark mcclure <mcmcclur at unca.edu>
- Date: Tue, 29 Jul 2008 01:38:22 -0400 (EDT)
- References: <g6emsu$cnb$1@smc.vnet.net>
On Jul 26, 4:22 am, Tyler <hayes.ty... at gmail.com> wrote:
> (2) Editing $UserBaseDirectory/FrontEnd/init.m
> I've tried adding either
> SetOption[Graphics,PlotRegion->{{0.1,0.9},{0.1,0.9}}]
This should work. Of course, you need SetOptions,
rather than SetOption. Notice, however that setting
the options of Graphics will not affect the options of
Plot. Probably your best option is to set the options
of the individual Plot commands that you want to
use.
Alternatively, you could set $Post:
$Post = If[Head[#] === Graphics, Show[#,
PlotRegion -> {{0.1, 0.9}, {0.1, 0.9}}], #] &;
I don't really recommend this, though.
Mark McClure