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

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

[Octave-bug-tracker] [bug #57129] Implement stem plot value "auto" for p


From: Rik
Subject: [Octave-bug-tracker] [bug #57129] Implement stem plot value "auto" for property "MarkerEdgeColor"
Date: Sat, 16 Nov 2019 21:57:45 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko

Update of bug #57129 (project octave):

                Severity:              3 - Normal => 2 - Minor              
                Priority:              5 - Normal => 3 - Low                
                 Summary: Add new stem plot properties such as ColorMode
present in latest Matlab versions => Implement stem plot value "auto" for
property "MarkerEdgeColor"

    _______________________________________________________

Follow-up Comment #6:

The issue is the property "MarkerEdgeColor".  In Matlab, this accepts string
color values (e.g., 'k' or 'r'), RGB color values (e.g., [1, 0, 0]), and the
special string value "auto".

In the case of "auto", Matlab uses the value of the "Color" property for the
value of "MarkerEdgeColor".  The issue is that Octave only implements an
actual color specification.  Re-titling the bug to reflect that.

In the meantime, there is a simple workaround of using a LineSpecification
argument to stem.  This is Matlab-compatible so when coded this way will work
in either language.

Instead of 


stem (1:100, 'color', 'k')


try


stem (1:100, 'k')




    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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