We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d83fa7 commit 67a7ee8Copy full SHA for 67a7ee8
examples/pylab_examples/figlegend_demo.py
@@ -12,7 +12,7 @@
12
13
y3 = np.sin(4*np.pi*x)
14
y4 = np.exp(-2*x)
15
-l3, l4 = ax2.plot(x, y3, 'yd-', x, y3, 'k^')
+l3, l4 = ax2.plot(x, y3, 'yd-', x, y4, 'k^')
16
17
fig.legend((l1, l2), ('Line 1', 'Line 2'), 'upper left')
18
fig.legend((l3, l4), ('Line 3', 'Line 4'), 'upper right')
0 commit comments