Thanks to visit codestin.com
Credit goes to github.com

Skip to content

merge fill_demo and fill_demo_features #8154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Mar 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions examples/lines_bars_and_markers/fill_demo.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
"""
==================
A simple Fill plot
==================
==============
Fill plot demo
==============

This example showcases the most basic fill plot a user can do with matplotlib.
First example showcases the most basic fill plot a user can do with matplotlib.

Second example shows a few optional features:

* Multiple curves with a single command.
* Setting the fill color.
* Setting the opacity (alpha value).
"""
import numpy as np
import matplotlib.pyplot as plt
Expand All @@ -15,4 +21,11 @@

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)

fig, ax = plt.subplots()
ax.fill(x, y1, 'b', x, y2, 'r', alpha=0.3)
plt.show()
21 changes: 0 additions & 21 deletions examples/lines_bars_and_markers/fill_demo_features.py

This file was deleted.