.. only:: html

    .. note::
        :class: sphx-glr-download-link-note

        Click :ref:`here <sphx_glr_download_gallery_axes_grid1_demo_imagegrid_aspect.py>`     to download the full example code
    .. rst-class:: sphx-glr-example-title

    .. _sphx_glr_gallery_axes_grid1_demo_imagegrid_aspect.py:


=====================
Demo Imagegrid Aspect
=====================



.. image:: /gallery/axes_grid1/images/sphx_glr_demo_imagegrid_aspect_001.png
    :alt: demo imagegrid aspect
    :class: sphx-glr-single-img






.. code-block:: default

    import matplotlib.pyplot as plt

    from mpl_toolkits.axes_grid1 import ImageGrid
    fig = plt.figure()

    grid1 = ImageGrid(fig, 121, (2, 2), axes_pad=0.1,
                      aspect=True, share_all=True)

    for i in [0, 1]:
        grid1[i].set_aspect(2)


    grid2 = ImageGrid(fig, 122, (2, 2), axes_pad=0.1,
                      aspect=True, share_all=True)


    for i in [1, 3]:
        grid2[i].set_aspect(2)

    plt.show()


.. _sphx_glr_download_gallery_axes_grid1_demo_imagegrid_aspect.py:


.. only :: html

 .. container:: sphx-glr-footer
    :class: sphx-glr-footer-example



  .. container:: sphx-glr-download sphx-glr-download-python

     :download:`Download Python source code: demo_imagegrid_aspect.py <demo_imagegrid_aspect.py>`



  .. container:: sphx-glr-download sphx-glr-download-jupyter

     :download:`Download Jupyter notebook: demo_imagegrid_aspect.ipynb <demo_imagegrid_aspect.ipynb>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    Keywords: matplotlib code example, codex, python plot, pyplot
    `Gallery generated by Sphinx-Gallery
    <https://sphinx-gallery.readthedocs.io>`_