--- C:\home\mspacek\Desktop\CHANGELOG.rev2508.txt 2006-06-22 22:13:15.000000000 -0700 +++ C:\home\mspacek\Desktop\CHANGELOG 2006-06-22 22:38:38.000000000 -0700 @@ -1,5 +1,21 @@ +2006-06-22 Various changes to bar(), barh(), and hist(). + Added 'edgecolor' keyword arg to bar() and barh(). + The x and y args in barh() have been renamed to width + and bottom respectively, and their order has been swapped + to maintain a (position, value) order ala matlab. left, + height, width and bottom args can now all be scalars or + sequences. barh() now defaults to edge alignment instead + of center alignment. Added a keyword arg 'align' to bar(), + barh() and hist() that controls between edge or center bar + alignment. Fixed ignoring the rcParams['patch.facecolor'] + for bar color in bar() and barh(). Fixed ignoring the + rcParams['lines.color'] for error bar color in bar() + and barh(). Fixed a bug where patches would be cleared + when error bars were plotted if rcParams['axes.hold'] + was False. - MAS + 2006-06-22 Added support for numerix 2-D arrays as alternatives to a sequence of (x,y) tuples for specifying paths in collections, quiver, contour, pcolor, transforms. Fixed contour bug involving setting limits for color mapping. Added numpy-style all() to numerix. - EF