help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to Change Plot Colours


From: John W. Eaton
Subject: Re: How to Change Plot Colours
Date: Sat, 20 Oct 2007 10:07:56 -0400

On 19-Oct-2007, Henry F. Mollet wrote:

| How is this working  if 'DefaultAxesColorOrder' is not (yet?) part of get
| (0)?
| octave-2.9.15:6> get (0)
| ans =
| {
|   type = root figure
|   currentfigure =  1
|   children =  1
|   visible = on
| }

Properties like "defaultaxescolororder" are not really properties with
the given name, but a special property with a name that must be
decoded.  The "default" prefix means that this property is used as a
default if one is not specified, and the "axes" part means that it
applies to "axes" objects.  The rest ("colororder") is the name of the
property.  So if you do something like

  set (0, "defaultaxescolororder", rand (10, 3))

you can find the property by doing

  get (0, "default")

jwe


reply via email to

[Prev in Thread] Current Thread [Next in Thread]