On this page
matplotlib.pyplot.grid
matplotlib.pyplot.grid(b=None, which='major', axis='both', **kwargs)[source]-
Turn the axes grids on or off.
Set the axes grids on or off; b is a boolean.
If b is None and
len(kwargs)==0, toggle the grid state. If kwargs are supplied, it is assumed that you want a grid and b is thus set to True.which can be 'major' (default), 'minor', or 'both' to control whether major tick grids, minor tick grids, or both are affected.
axis can be 'both' (default), 'x', or 'y' to control which set of gridlines are drawn.
kwargs are used to set the grid line properties, e.g.,:
ax.grid(color='r', linestyle='-', linewidth=2)Valid
Line2Dkwargs areProperty Description agg_filtera filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alphafloat (0.0 transparent through 1.0 opaque) animatedbool antialiasedor aabool clip_boxa Bboxinstanceclip_onbool clip_path[( Path,Transform) |Patch| None]coloror cany matplotlib color containsa callable function dash_capstyle['butt' | 'round' | 'projecting'] dash_joinstyle['miter' | 'round' | 'bevel'] dashessequence of on/off ink in points drawstyle['default' | 'steps' | 'steps-pre' | 'steps-mid' | 'steps-post'] figurea Figureinstancefillstyle['full' | 'left' | 'right' | 'bottom' | 'top' | 'none'] gidan id string labelobject linestyleor ls['solid' | 'dashed', 'dashdot', 'dotted' | (offset, on-off-dash-seq) | '-'|'--'|'-.'|':'|'None'|' '|'']linewidthor lwfloat value in points markerA valid marker stylemarkeredgecoloror mecany matplotlib color markeredgewidthor mewfloat value in points markerfacecoloror mfcany matplotlib color markerfacecoloraltor mfcaltany matplotlib color markersizeor msfloat markevery[None | int | length-2 tuple of int | slice | list/array of int | float | length-2 tuple of float] path_effectsAbstractPathEffectpickerfloat distance in points or callable pick function fn(artist, event)pickradiusfloat distance in points rasterizedbool or None sketch_params(scale: float, length: float, randomness: float) snapbool or None solid_capstyle['butt' | 'round' | 'projecting'] solid_joinstyle['miter' | 'round' | 'bevel'] transforma matplotlib.transforms.Transforminstanceurla url string visiblebool xdata1D array ydata1D array zorderfloat
Examples using matplotlib.pyplot.grid
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/2.2.3/api/_as_gen/matplotlib.pyplot.grid.html