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

Skip to content

Commit 0d3f639

Browse files
committed
updated fill between example title
1 parent 8b0b534 commit 0d3f639

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/pyplots/whats_new_98_4_fill_between.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
ax.plot(x, y1, x, y2, color='black')
1717
ax.fill_between(x, y1, y2, where=y2>y1, facecolor='yellow', alpha=0.5)
1818
ax.fill_between(x, y1, y2, where=y2<=y1, facecolor='red', alpha=0.5)
19-
ax.set_title('Highlight Between and Intercept')
19+
ax.set_title('Fill Between')
2020

2121
plt.show()

0 commit comments

Comments
 (0)