Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a50e7 commit 121f214Copy full SHA for 121f214
doc/users/whats_new.rst
@@ -89,6 +89,21 @@ interval.
89
.. plot:: examples/pylab_examples/boxplot_demo3.py
90
91
92
+New RC parameter functionality
93
+------------------------------
94
+
95
+Matthew Emmett added a function and a context manager to help manage
96
+RC parameters: :func:`~matplotlib.rc_file` and
97
+:class:`~matplotlib.rc_context`. To load RC paramters from a file::
98
99
+ >>> mpl.rc_file('mpl.rc')
100
101
+To temporarily use RC parameters::
102
103
+ >>> with mpl.rc_context(fname='mpl.rc', rc={'text.usetex': True}):
104
+ >>> ...
105
106
107
.. _whats-new-1-1:
108
109
new in matplotlib-1.1
0 commit comments