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

Skip to content

Commit 8559bdd

Browse files
author
Steve Chaplin
committed
SC 03/10/2004
svn path=/trunk/matplotlib/; revision=579
1 parent f6015f9 commit 8559bdd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/date_demo1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
opens = [q[1] for q in quotes]
3535

3636
ax = subplot(111)
37-
plot_date(dates, opens)
37+
plot_date(dates, opens, '-')
3838

3939
# format the ticks
4040
ax.xaxis.set_major_locator(years)

examples/date_demo2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
opens = [q[1] for q in quotes]
2929

3030
ax = subplot(111)
31-
plot_date(dates, opens)
31+
plot_date(dates, opens, '-')
3232
ax.xaxis.set_major_locator(months)
3333
ax.xaxis.set_major_formatter(monthsFmt)
3434
ax.xaxis.set_minor_locator(mondays)

0 commit comments

Comments
 (0)