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

Skip to content

Commit 1292295

Browse files
committed
fixed singleton plot and added errbar colors
svn path=/trunk/matplotlib/; revision=316
1 parent 49d07a0 commit 1292295

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

.matplotlibrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ lines.linestyle : - # solid line
3838
lines.color : b # blue; color format or hex string
3939
lines.markersize : 6 # markersize, in points
4040
lines.antialiased : True # render lines in antialised (no jaggies)
41-
lines.data_clipping : True # Use data clipping in addition to viewport
41+
lines.data_clipping : False # Use data clipping in addition to viewport
4242
# clipping. Useful if you plot long data
4343
# sets with only a fraction in the viewport
4444

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
New entries should be added at the top
22

3+
2004-05-26 Added Gary's errorbar stuff and made some fixes for length
4+
one plots and constant data plots - JDH
5+
36
2004-05-25 Tweaked TkAgg backend so that canvas.draw() works
47
more like the other backends. Fixed a bug resulting
58
in 2 draws per figure mangager show(). - JTM

examples/backend_driver.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
'table_demo.py',
5151
'text_handles.py',
5252
'text_themes.py',
53+
'two_scales.py',
5354
)
5455

5556
def drive(backend):

examples/errorbar_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
figure(1)
1212
#errorbar(t, s, e, fmt='o') # vertical symmetric
1313
#errorbar(t, s, None, f, fmt='o') # horizontal symmetric
14-
errorbar(t, s, e, f, fmt='o') # both symmetric
14+
#errorbar(t, s, e, f, fmt='o') # both symmetric
1515
#errorbar(t, s, [e,g], [f,h], fmt='o') # both asymmetric
16-
#errorbar(t, s, [e,g], f, fmt='o') # both mixed
16+
errorbar(t, s, [e,g], f, fmt='o', ecolor='g') # both mixed
1717
#errorbar(t, s, e, [f,h], fmt='o') # both mixed
1818
#errorbar(t, s, [e,g], fmt='o') # vertical asymmetric
1919
#errorbar(t, s, yerr=e, fmt='o') # named

setupext.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def add_base_flags(module):
6767
if os.path.exists(p)]
6868
module.include_dirs.extend(incdirs)
6969
module.library_dirs.extend(libdirs)
70-
70+
71+
7172
def getoutput(s):
7273
'get the output of a system command'
7374

0 commit comments

Comments
 (0)