octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #31800] plotyy ylabels implemented incorrectly


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #31800] plotyy ylabels implemented incorrectly for FLTK backend
Date: Sun, 19 Dec 2010 22:40:10 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.231 Safari/534.10

Update of bug #31800 (project octave):

                Severity:              3 - Normal => 4 - Important          
                  Status:                    None => Confirmed              

    _______________________________________________________

Follow-up Comment #1:

The same problem exists with the xaxislocation is changed from "bottom" to
"top"


plot (0:1, 0:1)
xlabel ("xlabel")
ylabel ("ylabel")
set (gca, "xaxislocation", "top")
set (gca, "yaxislocation", "right")


I'm elevating the severity since the FLTK backend now allows for manual
placement of the axis labels. For example, the commands below should replace
the existing x/ylabels.


h1 = text (0.5, 0.5, "new xlabel");
h2 = text (0.5, 0.5, "new ylabel");
set (gca, "xlabel", h1)
set (gca, "ylabel", h2)


It looks to me like there are two problems. (1) the axis position property
needs to be modified when either axis location changes. (2) the position of
the text objects representing the axis labels need to be calculated correctly.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?31800>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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