.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/global_config/config_subplot.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr__gallery_global_config_config_subplot.py: Subplot Config ============== Configuration values are used for any argument that is not explicitly passed. .. GENERATED FROM PYTHON SOURCE LINES 7-35 .. image-sg:: /_gallery/global_config/images/sphx_glr_config_subplot_001.webp :alt: config subplot :srcset: /_gallery/global_config/images/sphx_glr_config_subplot_001.webp :class: sphx-glr-single-img .. code-block:: Python # test_example = true import fastplotlib as fpl from fastplotlib.layouts import Subplot import imageio.v3 as iio # used to create every subplot Subplot.config.init.toolbar = False # a sequence of 1, 2, or 4 colors, 2 colors makes a gradient from bottom to top Subplot.config.init.background_color = ["black", "gray"] # used by Subplot.auto_scale(), which Figure.show() calls for every subplot Subplot.config.auto_scale.zoom = 0.5 data = iio.imread("imageio:camera.png") figure = fpl.Figure(size=(700, 560)) figure[0, 0].add_image(data) figure.show() # NOTE: fpl.loop.run() should not be used for interactive sessions # See the "JupyterLab and IPython" section in the user guide if __name__ == "__main__": print(__doc__) fpl.loop.run() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 0.294 seconds) .. _sphx_glr_download__gallery_global_config_config_subplot.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: config_subplot.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: config_subplot.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_