Mercurial > hg > octave-lyh
diff scripts/plot/private/__stem__.m @ 10135:4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
author | David Bateman <dbateman@free.fr> |
---|---|
date | Wed, 20 Jan 2010 02:52:22 +0100 |
parents | 1aeb39118764 |
children | 95c3e38098bf |
line wrap: on
line diff
--- a/scripts/plot/private/__stem__.m +++ b/scripts/plot/private/__stem__.m @@ -443,8 +443,14 @@ mc = lc = cur_props(i).color; elseif (isfield (cur_props(i), "linestyle")) ls = cur_props(i).linestyle; + if (isempty (ls)) + ls = __next_line_style__ (); + endif elseif (isfield (cur_props(i), "marker") && ! strcmpi (cur_props(i).marker, "none")) ms = cur_props(i).marker; + if (isempty (ms)) + [dummy, ms] = __next_line_style__ (); + endif endif endfor endfunction