On Aug 1, 1:28 pm, John H Palmieri <[email protected]> wrote: > On Monday, August 1, 2011 9:22:58 AM UTC-7, andres.ordonez wrote: > > > I have these matplotlibrc files: > > > /etc/matplotlibrc > > /home/andres/.matplotlib/matplotlibrc > > /home/andres/.sage/matplotlibrc > > /usr/local/sage-4.6/local/lib/python2.6/site-packages/matplotlib/mpl- > > data/matplotlibrc > > I don't know what's going on with the color -- I have a feeling that Sage is > setting blue as the default color somewhere, overriding the settings in the > rc files -- but when I put
Yes, it does. In line.py: @options(alpha=1, rgbcolor=(0,0,1), thickness=1, legend_label=None) def line2d(points, **options): This is done with most Sage plotting things. Notice that it does *not* provide a default linestyle :) My guess is that if you tried thickness or alpha you'd get the same behavior? I think this is intended to be a feature, but other ideas on that are welcome. - kcrisman -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
