77 command line, but the GUI needs to be updated to allow resolution
88 to be set along with filename
99
10- -- fix text size calculations using pango layouts: DONE
10+ -- fix text size calculations using pango layouts:
11+
12+ DONE
1113
1214-- add a font selection dialog for the axis text
1315
14- -- enable vertical rendering for ylabels: DONE
16+ -- enable vertical rendering for ylabels:
17+
18+ DONE
1519
1620-- enable anti aliasing for fonts: DONE with pango
1721
2125-- add a color selection dialog for the background, lines, and text
2226
2327-- allow interactive control of the plot from the python shell after
24- it has been launched using the cookbook thread recipe. DONE
28+ it has been launched using the cookbook thread recipe.
29+
30+ DONE
2531
2632-- write a user guide
2733
3642 working cross platform. According to the docs this is better
3743 handled using size hints -- but I don't know how to use them, yet.
3844
39- -- vlines and hlines disappear on in some instance due to improper
45+ -- vlines and hlines disappear in some instance due to improper
4046 clipping
4147
4248-- One the errorbar demo the hlines do not always appear symmetric
4551
4652-- Clip patches outside view port
4753
54+ DONE
55+
4856-- Allow background color to be set for subplots
4957
58+ DONE: subplot now takes a kwarg axisbg with color format string
59+ just as axes does
60+
5061-- Expose bug on win32 for axis text
5162
5263-- Fix floating point bug on panx/pany where 0 is computed as 5e-17
6071
6172 plot(t1, p1, 'o', t2, p2, ogtt.times, ogtt.cpeptide, 's')
6273
74+ DONE: 2003-05-12 fixed _grab_next_args in figure.py
75+
6376-- xlabel is lower than it needs to be
6477
78+ UPDATE: made a change -- make sure this works
79+
80+ -- interactive setting of x/ylabels doesn't redraw all labels unless
81+ you click a forced redraw
82+
83+ DONE 2003-05-12 Removed some of the state handling of text labels
84+ so they always redraw
85+
86+ -- When you change a property using the OO interface in interactive,
87+ the figure doesn't know to redraw.
88+
89+ Some possibilities:
90+
91+ 1) redraw on all interactive commands. kind of heavy handled
92+
93+ 2) override setattr on artist to signal a redraw event. kind of
94+ heavy handled
95+
96+ 3) allow derived classes to signal redraw events when nexessary.
97+ kind of code intrusive.
98+
99+
100+ -- on exit from interactive.py call gtk. mainquit
101+
102+ -- pan zoom on axes_demo flushes insets
0 commit comments