_mpl-gallery-nogrid.mplstyle 489 B

12345678910111213141516171819
  1. # This style is used for the plot_types gallery. It is considered private.
  2. axes.grid: False
  3. axes.axisbelow: True
  4. figure.figsize: 2, 2
  5. # make it so the axes labels don't show up. Obviously
  6. # not good style for any quantitative analysis:
  7. figure.subplot.left: 0.01
  8. figure.subplot.right: 0.99
  9. figure.subplot.bottom: 0.01
  10. figure.subplot.top: 0.99
  11. xtick.major.size: 0.0
  12. ytick.major.size: 0.0
  13. # colors:
  14. image.cmap : Blues
  15. axes.prop_cycle: cycler('color', ['1f77b4', '82bbdb', 'ccdff1'])