|
[Date Index]
[Thread Index]
[Author Index]
Re: SetOptions & Show
- To: mathgroup at smc.vnet.net
- Subject: [mg3291] Re: [mg3262] SetOptions & Show
- From: Richard Mercer <richard at seuss.math.wright.edu>
- Date: Sat, 24 Feb 1996 03:19:57 -0500
- Sender: owner-wri-mathgroup at wolfram.com
> Hello, my name is Roberto Cavaliere, excuse me for my
> incorrect English I have a problem with SetOptions; I
> want to set the option Axes for the function Show, but
> it has not any options in the Options list. If I write
> :
> In[1]:= SetOptions[Show,Axes->True]
> Out[1]:= Axes is not a valid option for Show
.....
Use
SetOptions[Graphics,Axes->True]
The options relevant to the Show command are stored as Graphics
options. Execute
Options[Graphics]
to see the full list.
Richard Mercer
==== [MESSAGE SEPARATOR] ====
Prev by Date:
Ticks
Next by Date:
Re: SetOptions & Show
Previous by thread:
SetOptions & Show
Next by thread:
Re: SetOptions & Show
|