Re: Options[] does not list every option
- To: mathgroup at smc.vnet.net
- Subject: [mg81629] Re: [mg81605] Options[] does not list every option
- From: Andrzej Kozlowski <akoz at mimuw.edu.pl>
- Date: Sat, 29 Sep 2007 06:28:56 -0400 (EDT)
- References: <200709290626.CAA07685@smc.vnet.net>
This is because PlotStyle and PlotJoined (or Joined in v. 6) are options of "ListPlot" but are not obtions of "Graphics". To see the difference between the two sets of options here: Complement[Options[ListPlot], Options[Graphics]] Only the values of options of Graphics are given when you evaluate AbsoluteOptions[graph]. Andrzej Kozlowski On 29 Sep 2007, at 15:26, zac wrote: > Dear Group, > > I'm completely clueless about why Options and AbsoluteOptions do not > list PlotJoined and PlotStyle options in case of passed graphics. > Evaluate code: > > graph = ListPlot[Range[0, 10], PlotStyle -> Hue[1], PlotJoined -> > True]; > Options[graph] > AbsoluteOptions[graph] > > I want to access eg. the styles *after* I have the plot. Is it > possible? > Thank you in advance. > > Istvan Zachar. > >
- References:
- Options[] does not list every option
- From: zac <replicatorzed@gmail.com>
- Options[] does not list every option