Mercurial > hg > octave-nkf
comparison scripts/plot/private/__default_plot_options__.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 | 1479b93ee655 |
comparison
equal
deleted
inserted
replaced
10134:be13fa20656a | 10135:4516a0c97ced |
---|---|
25 | 25 |
26 function options = __default_plot_options__ () | 26 function options = __default_plot_options__ () |
27 | 27 |
28 options.key = ""; | 28 options.key = ""; |
29 options.color = []; | 29 options.color = []; |
30 options.linestyle = "-"; | 30 options.linestyle = []; |
31 options.marker = "none"; | 31 options.marker = []; |
32 | 32 |
33 endfunction | 33 endfunction |