Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

There is a poorly-documented option for modifying this globally as well.

sage.plot.graphics.Graphics.SHOW_OPTIONS

is a dictionary that has a lot of options. So for instance, this would work to make a truly tiny graph.

sage.plot.graphics.Graphics.SHOW_OPTIONS['figsize']=1
plot(x,(x,-1,1))

However, one shouldn't abuse it - it's too easy to think there should be one default! We try for one that works in a wide variety of cases, but I agree that the default is often too big for certain applications.