You are reading an old version of the documentation (v2.1.1). For the latest version see https://matplotlib.org/stable/gallery/lines_bars_and_markers/fill.html
matplotlib
Fork me on GitHub


Travis-CI:

Related Topics

This Page

Fill plot demoΒΆ

Demo fill plot.

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 1, 500)
y = np.sin(4 * np.pi * x) * np.exp(-5 * x)

First, the most basic fill plot a user can make with matplotlib:

fig, ax = plt.subplots()

ax.fill(x, y, zorder=10)
ax.grid(True, zorder=5)

x = np.linspace(0, 2 * np.pi, 500)
y1 = np.sin(x)
y2 = np.sin(3 * x)
../../_images/sphx_glr_fill_001.png

Next, a few more optional features:

  • Multiple curves with a single command.
  • Setting the fill color.
  • Setting the opacity (alpha value).
fig, ax = plt.subplots()
ax.fill(x, y1, 'b', x, y2, 'r', alpha=0.3)
plt.show()
../../_images/sphx_glr_fill_002.png

Total running time of the script: ( 0 minutes 0.034 seconds)

Gallery generated by Sphinx-Gallery