.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "intro/matplotlib/auto_examples/options/plot_linestyles.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_intro_matplotlib_auto_examples_options_plot_linestyles.py: Linestyles ========== Plot the different line styles. .. GENERATED FROM PYTHON SOURCE LINES 7-36 .. image-sg:: /intro/matplotlib/auto_examples/options/images/sphx_glr_plot_linestyles_001.png :alt: plot linestyles :srcset: /intro/matplotlib/auto_examples/options/images/sphx_glr_plot_linestyles_001.png :class: sphx-glr-single-img .. code-block:: default import numpy as np import matplotlib.pyplot as plt def linestyle(ls, i): X = i * .5 * np.ones(11) Y = np.arange(11) plt.plot(X, Y, ls, color=(.0, .0, 1, 1), lw=3, ms=8, mfc=(.75, .75, 1, 1), mec=(0, 0, 1, 1)) plt.text(.5 * i, 10.25, ls, rotation=90, fontsize=15, va='bottom') linestyles = ['-', '--', ':', '-.', '.', ',', 'o', '^', 'v', '<', '>', 's', '+', 'x', 'd', '1', '2', '3', '4', 'h', 'p', '|', '_', 'D', 'H'] n_lines = len(linestyles) size = 20 * n_lines, 300 dpi = 72.0 figsize= size[0] / float(dpi), size[1] / float(dpi) fig = plt.figure(figsize=figsize, dpi=dpi) plt.axes([0, 0.01, 1, .9], frameon=False) for i, ls in enumerate(linestyles): linestyle(ls, i) plt.xlim(-.2, .2 + .5*n_lines) plt.xticks([]) plt.yticks([]) plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.043 seconds) .. _sphx_glr_download_intro_matplotlib_auto_examples_options_plot_linestyles.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_linestyles.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_linestyles.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_