| """ |
| .. redirect-from:: /users/customizing |
| .. redirect-from:: /tutorials/introductory/customizing |
|
|
| .. _customizing: |
|
|
| ===================================================== |
| Customizing Matplotlib with style sheets and rcParams |
| ===================================================== |
|
|
| Tips for customizing the properties and default styles of Matplotlib. |
|
|
| There are three ways to customize Matplotlib: |
|
|
| 1. :ref:`Setting rcParams at runtime<customizing-with-dynamic-rc-settings>`. |
| 2. :ref:`Using style sheets<customizing-with-style-sheets>`. |
| 3. :ref:`Changing your matplotlibrc file<customizing-with-matplotlibrc-files>`. |
|
|
| Setting rcParams at runtime takes precedence over style sheets, style |
| sheets take precedence over :file:`matplotlibrc` files. |
|
|
| .. _customizing-with-dynamic-rc-settings: |
|
|
| Runtime rc settings |
| =================== |
|
|
| You can dynamically change the default rc (runtime configuration) |
| settings in a python script or interactively from the py |