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

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

[Octave-bug-tracker] [bug #48474] mxe-octave: enable better supported gn


From: Hartmut
Subject: [Octave-bug-tracker] [bug #48474] mxe-octave: enable better supported gnuplot terminals
Date: Thu, 14 Jul 2016 17:30:25 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0

Follow-up Comment #34, bug #48474 (project octave):

@Dan : For your curiosity I have run the following script with Octave 4.0.3
under Windows:


clear, close all;
graphics_toolkit gnuplot

figure
plot(1:10)
text(1,8, 'red text line', 'Color','r');                    % -> red
text(1,6, 'red text line with subscript a_b', 'Color','r'); % -> black

figure
plot(1:10)
text(1,8, 'red text line', 'Color','r');                                      
    % -> red
text(1,6, 'red text line with subscript a_b', 'Color','r', 'Interpreter',
'None'); % -> red

figure
plot(1:10)
text(1,8, 'red text line', 'Color','r');                         % -> red
ht = text(1,6, 'red text line with subscript a_b', 'Color','r'); % -> black
set(ht, 'interpreter', 'none');                                  % -> red


After the last command line, the black text turns red, after the redraw on
this command.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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