You are reading an old version of the documentation (v1.5.1). For the latest version see https://matplotlib.org/stable/api/backend_wxagg_api.html

We're updating the default styles for Matplotlib 2.0

Learn what to expect in the new updates

matplotlib

Travis-CI:

This Page

matplotlib.backends.backend_wxagg

matplotlib.backends.backend_wxagg.FigureCanvas

alias of FigureCanvasWxAgg

class matplotlib.backends.backend_wxagg.FigureCanvasWxAgg(parent, id, figure)

Bases: matplotlib.backends.backend_agg.FigureCanvasAgg, matplotlib.backends.backend_wx.FigureCanvasWx

The FigureCanvas contains the figure and does event handling.

In the wxPython backend, it is derived from wxPanel, and (usually) lives inside a frame instantiated by a FigureManagerWx. The parent window probably implements a wxSizer to control the displayed control size - but we give a hint as to our preferred minimum size.

Initialise a FigureWx instance.

  • Initialise the FigureCanvasBase and wxPanel parents.
  • Set event handlers for: EVT_SIZE (Resize event) EVT_PAINT (Paint event)
blit(bbox=None)

Transfer the region of the agg buffer defined by bbox to the display. If bbox is None, the entire buffer is transferred.

draw(drawDC=None)

Render the figure using agg.

filetypes = {'pgf': 'PGF code for LaTeX', 'rgba': 'Raw RGBA bitmap', 'svg': 'Scalable Vector Graphics', 'tif': 'Tagged Image File Format', 'ps': 'Postscript', 'jpeg': 'Joint Photographic Experts Group', 'tiff': 'Tagged Image File Format', 'svgz': 'Scalable Vector Graphics', 'eps': 'Encapsulated Postscript', 'png': 'Portable Network Graphics', 'raw': 'Raw RGBA bitmap', 'pdf': 'Portable Document Format', 'jpg': 'Joint Photographic Experts Group'}
print_figure(filename, *args, **kwargs)
class matplotlib.backends.backend_wxagg.FigureFrameWxAgg(num, fig)

Bases: matplotlib.backends.backend_wx.FigureFrameWx

get_canvas(fig)
class matplotlib.backends.backend_wxagg.NavigationToolbar2WxAgg(canvas)

Bases: matplotlib.backends.backend_wx.NavigationToolbar2Wx

get_canvas(frame, fig)
matplotlib.backends.backend_wxagg.new_figure_manager(num, *args, **kwargs)

Create a new figure manager instance

matplotlib.backends.backend_wxagg.new_figure_manager_given_figure(num, figure)

Create a new figure manager instance for the given figure.