.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/global_config/config_style1.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_style1.py: Light and Compact Style ======================= A style is a preset of configuration values. Once called, it effects all subsequent Figures/graphic objects that the style sets. .. GENERATED FROM PYTHON SOURCE LINES 8-39 .. image-sg:: /_gallery/global_config/images/sphx_glr_config_style1_001.webp :alt: config style1 :srcset: /_gallery/global_config/images/sphx_glr_config_style1_001.webp :class: sphx-glr-single-img .. code-block:: Python # test_example = true import numpy as np import fastplotlib as fpl # white background, black axes, dark graphic colors fpl.style.light() # no subplot toolbar, thin subplot frame # this configuration is merged with the existing light preset from above fpl.style.compact() xs = np.linspace(-10, 10, 100) ys = np.sin(xs) data = np.column_stack([xs, ys]) figure = fpl.Figure(shape=(2, 1), size=(700, 560)) # the colors of the line and the scatter come from the style figure[0, 0].add_line(data) figure[1, 0].add_scatter(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.319 seconds) .. _sphx_glr_download__gallery_global_config_config_style1.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_style1.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: config_style1.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_