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

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

[Octave-bug-tracker] [bug #50311] plot lines are not saved in a file whe


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #50311] plot lines are not saved in a file when scatterplot with filled markers are on the top
Date: Wed, 15 Feb 2017 07:30:32 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:51.0) Gecko/20100101 Firefox/51.0

Update of bug #50311 (project octave):

                Category:                Plotting => Plotting with OpenGL   
                  Status:                    None => Fixed                  
             Open/Closed:                    Open => Closed                 

    _______________________________________________________

Follow-up Comment #1:

Hi,

This bug has been solved in Octave 4.2, combined with the latest version of
gl2ps library (1.3.9).
The workaround is to remove the axes (colorbar and main axes) background:


x=0:0.1:100;
y=sin(x);
z=cos(x./10);
figure; hold on; plot(x,y); s1=scatter(x,z,8,y,'filled'); 
grid on; 
hcb = colorbar;
legend(s1,'plot'); title('title');
set (gca, "color", "none")
set (hcb, "color", "none")
print('test_plot','-dpng')


As for the legend, there is no workaround except using Octave 4.2

Closing report as fixed.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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