()
| 2842 | |
| 2843 | @image_comparison(['contour_hatching'], remove_text=True, style='mpl20') |
| 2844 | def test_contour_hatching(): |
| 2845 | x, y, z = contour_dat() |
| 2846 | fig, ax = plt.subplots() |
| 2847 | ax.contourf(x, y, z, 7, hatches=['/', '\\', '//', '-'], |
| 2848 | cmap=mpl.colormaps['gray'].with_alpha(0.5), |
| 2849 | extend='both') |
| 2850 | |
| 2851 | |
| 2852 | @image_comparison(['contour_colorbar'], style='mpl20', |
nothing calls this directly
no test coverage detected
searching dependent graphs…