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

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

[Octave-bug-tracker] [bug #58470] Plotyy axis labels out of canvas


From: Rik
Subject: [Octave-bug-tracker] [bug #58470] Plotyy axis labels out of canvas
Date: Sun, 31 May 2020 13:27:02 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko

Update of bug #58470 (project octave):

                Category:                Plotting => Plotting with OpenGL   
              Item Group:                    None => Incorrect Result       
                  Status:                    None => Confirmed              
                 Release:                   5.2.0 => dev                    

    _______________________________________________________

Follow-up Comment #1:

Confirmed.

The problem seems to be that the "position" property is not be automatically
changed to an accurate size.  In the mean time, if you must create figures for
publication you can continue to use plotyy, and just adjust the size
manually.

For example, adding this produces an acceptable looking plot when printed.


pos = get (gca, 'position')
pos(3) -= .12;  # reduce width
pos(1) += .04;  # shift x-offset
pos(4) -= .08;  # reduce height
pos(2) += .07;  # shift y-offset
set (gca, 'position', pos);




    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?58470>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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