[Matplotlib-users] Printing in wx : a solution ?

2009-10-01 Thread Cédrick FAURY
Hello, Printing in wx (with "printing_in_wx.py" from mpl examples) doesn't work on all pc (windows) I have tested. A crash occur as described in the thread Printing in wx The only

Re: [Matplotlib-users] Printing in wx

2009-05-28 Thread Stefanie Lück
a.SetText(msg) if wx.TheClipboard.Open(): wx.TheClipboard.SetData(data) wx.TheClipboard.Flush() wx.TheClipboard.Close() def plot_data(self, figure): query_plot = figure.add_subplot(1, 1, 1) listex = [0,1,2,3] listey = [0,1,2,3] q

Re: [Matplotlib-users] Printing in wx

2009-05-27 Thread Christopher Barker
Stefanie Lück wrote: > I'm trying to print my plots in a wxScrolledPanel under Windows XP but > it dosen't work. I only can print / preview the start of the plot on the > left upper site, the rest of page is empty: I wonder if that has to do with how you are using the scolledpanel, and DCs. Pos

[Matplotlib-users] Printing in wx

2009-05-27 Thread Stefanie Lück
Hi! I'm trying to print my plots in a wxScrolledPanel under Windows XP but it dosen't work. I only can print / preview the start of the plot on the left upper site, the rest of page is empty: http://www.snowflake-sl.info/printing_in_wx.JPG I used printing according the example of matplotlib pr