1 | initial version |
For a plot p
, there is a SHOW_OPTIONS
dictionary which seems to work for that purpose.
For example
sage: p=plot(x^2)
sage: p.SHOW_OPTIONS['dpi']=50
sage: p.show()
It it also seems that some of the plot options are copied from the global plot options plot.options
. You can adjust these, and it will only affect plots created after the modification.