.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/controllers/sync_all.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_controllers_sync_all.py: Sync subplots ============= Use one controller for all subplots. .. GENERATED FROM PYTHON SOURCE LINES 7-30 .. image-sg:: /_gallery/controllers/images/sphx_glr_sync_all_001.webp :alt: sync all :srcset: /_gallery/controllers/images/sphx_glr_sync_all_001.webp :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none /home/runner/work/fastplotlib/fastplotlib/fastplotlib/graphics/features/_base.py:18: UserWarning: casting float64 array to float32 warn(f"casting {array.dtype} array to float32") | .. code-block:: Python # test_example = false import numpy as np import fastplotlib as fpl xs = np.linspace(0, 2 * np.pi, 100) ys = np.sin(xs) figure = fpl.Figure(shape=(2, 2), controller_ids="sync", size=(700, 560)) for subplot in figure: subplot.add_line(np.column_stack([xs, ys + np.random.normal(scale=0.5, size=100)])) figure.show(maintain_aspect=False) # 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.820 seconds) .. _sphx_glr_download__gallery_controllers_sync_all.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: sync_all.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: sync_all.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_