help-octave
[Top][All Lists]
Advanced

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

Re: set(0, "defaultaxeslinewidth", 3) not working


From: Ben Abbott
Subject: Re: set(0, "defaultaxeslinewidth", 3) not working
Date: Fri, 17 Feb 2012 14:36:41 -0500

On Feb 17, 2012, at 2:26 PM, Muhali wrote:

> As far as I understand,
> 
> set(0, "defaultaxeslinewidth", 3)
> 
> sets all child line objects to a default of width 3. But the following shows
> that this is not the case:
> 
> h = line([0 1], [0 1]) ;
> get(h, "linewidth");
> ans =  0.50000
> 
> What am I missing?
> 
> M.

The axes linewidth refers to the width of the lines used to draw the axes. The 
change the default linewidth for line objects ...

        set(0, "defaultlinelinewidth", 3)

Ben



reply via email to

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