undocumented setting for the Frame option revised!
- To: mathgroup at smc.vnet.net
- Subject: [mg70617] undocumented setting for the Frame option revised!
- From: "dimitris" <dimmechan at yahoo.com>
- Date: Sat, 21 Oct 2006 05:14:08 -0400 (EDT)
Searching a little more I found something quite interesting (at least
for me!).
Options[Plot, Frame]
{Frame -> False}
graph1 = Plot[x, {x, 1, 2}];
Options[graph1, Frame]
{Frame -> False}
AbsoluteOptions[graph1, Frame]
{Frame -> {False, False, False, False}}
In the begining it looked like incosistency but after executing
the following commands I understood why AbsoluteOptions
gived above result
Options[graph1, PlotRange]
{PlotRange -> Automatic}
AbsoluteOptions[graph1, PlotRange]
{PlotRange -> {{0.9750000437499999, 2.0249999562500003},
{0.9750000437499999, 2.0249999562500003}}}
So, at least, you can found somewhere the setting Frame -> {False,
False, False, False} !
However, I still continue to search for any documentation and wait
responses
from you!
Regards
Dimitris