@header@
matplotlib.rcsetup | index /home/jdhunter/dev/lib64/python2.5/site-packages/matplotlib/rcsetup.py |
The rcsetup module contains the default values and the validation code for
customization using matplotlib's rc settings.
Each rc setting is assigned a default value and a function used to validate any
attempted changes to that setting. The default values and validation functions
are defined in the rcsetup module, and are used to construct the rcParams global
object which stores the settings and is referenced throughout matplotlib.
These default values should be consistent with the default matplotlibrc file
that actually reflects the values given here. Any additions or deletions to the
parameter set listed here should also be visited to the
:file:`matplotlibrc.template` in matplotlib's root source directory.
Modules | ||||||
|
Classes | ||||||||||||||||||||||||||||
|
Functions | ||
|
Data | ||
all_backends = ['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'QtAgg', 'Qt4Agg', 'TkAgg', 'WX', 'WXAgg', 'CocoaAgg', 'agg', 'cairo', 'emf', 'gdk', 'pdf', 'ps', 'svg', 'template'] defaultParams = {'axes.axisbelow': [False, <function validate_bool at 0x1c00848>], 'axes.edgecolor': ['k', <function validate_color at 0x1c108c0>], 'axes.facecolor': ['w', <function validate_color at 0x1c108c0>], 'axes.formatter.limits': [[-7, 7], <matplotlib.rcsetup.validate_nseq_int instance at 0x7f2c5a5272d8>], 'axes.grid': [False, <function validate_bool at 0x1c00848>], 'axes.hold': [True, <function validate_bool at 0x1c00848>], 'axes.labelcolor': ['k', <function validate_color at 0x1c108c0>], 'axes.labelsize': ['medium', <function validate_fontsize at 0x7f2c5a524488>], 'axes.linewidth': [1.0, <function validate_float at 0x1c0c320>], 'axes.titlesize': ['large', <function validate_fontsize at 0x7f2c5a524488>], ...} interactive_bk = ['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'QtAgg', 'Qt4Agg', 'TkAgg', 'WX', 'WXAgg', 'CocoaAgg'] non_interactive_bk = ['agg', 'cairo', 'emf', 'gdk', 'pdf', 'ps', 'svg', 'template'] validate_backend = <matplotlib.rcsetup.ValidateInStrings instance at 0x1d437e8> validate_cairo_format = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523cb0> validate_capstyle = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523d88> validate_fontset = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523c20> validate_joinstyle = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523d40> validate_legend_loc = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523e18> validate_negative_linestyle = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523dd0> validate_numerix = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523bd8> validate_orientation = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523b00> validate_ps_papersize = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523cf8> validate_toolbar = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523b48> validate_verbose = <matplotlib.rcsetup.ValidateInStrings instance at 0x7f2c5a523c68> |