Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
(2) |
2
|
3
(1) |
4
|
5
|
6
(1) |
7
(1) |
8
(1) |
9
|
10
(2) |
11
(5) |
12
(1) |
13
|
14
(4) |
15
|
16
(2) |
17
(5) |
18
(1) |
19
(3) |
20
(2) |
21
(5) |
22
(6) |
23
(6) |
24
(1) |
25
|
26
(2) |
27
(5) |
28
(3) |
29
(4) |
30
(3) |
31
(17) |
|
From: <leejjoon@us...> - 2009-07-03 19:35:43
|
Revision: 7247 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7247&view=rev Author: leejjoon Date: 2009-07-03 19:35:35 +0000 (Fri, 03 Jul 2009) Log Message: ----------- axes_grid: respect angle and alignment of ticklabels Modified Paths: -------------- trunk/matplotlib/lib/mpl_toolkits/axes_grid/axislines.py Modified: trunk/matplotlib/lib/mpl_toolkits/axes_grid/axislines.py =================================================================== --- trunk/matplotlib/lib/mpl_toolkits/axes_grid/axislines.py 2009-07-01 20:01:00 UTC (rev 7246) +++ trunk/matplotlib/lib/mpl_toolkits/axes_grid/axislines.py 2009-07-03 19:35:35 UTC (rev 7247) @@ -995,19 +995,21 @@ trans, vert, horiz, label_a = tvhl trans = transform + trans + # ignore ticklabel angle during the drawing time (but respect + # during init). Instead, use angle set by the TickLabel + # artist. + self.major_ticklabels = TickLabels(size, axis=self.axis) self.minor_ticklabels = TickLabels(size, axis=self.axis) self.major_ticklabels.set(figure = self.axes.figure, - rotation = label_a, transform=trans, va=vert, ha=horiz, fontproperties=fontprops) self.minor_ticklabels.set(figure = self.axes.figure, - rotation = label_a, transform=trans, va=vert, ha=horiz, @@ -1067,10 +1069,11 @@ trans, va, ha, a = tvhl trans = transform + trans - self.major_ticklabels.set(transform=trans, - va=va, ha=ha, rotation=a) + # ignore va, ha, angle during the drawing time + self.major_ticklabels.set_transform(trans) + self.major_ticks.update_ticks(tick_loc_angle_label, renderer) self.major_ticklabels.update_ticks(tick_loc_angle_label, renderer) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |