Pluggable Backends

Are matplotlib backends pluggable? That is, can package X provide an
experimental backend and tell matplotlib to use it? If so, how?

Yes, just point to your backend with the syntax:

matplotlibrc::

backend : module://mybackend where mybackend is a module in your PYTHONPATH

or in code::

  import matplotlib
  matplotlib.use('module://mybackend')

JDH

ยทยทยท

On Wed, Jul 8, 2009 at 3:49 PM, T J<tjhnson@...287...> wrote:

Are matplotlib backends pluggable? That is, can package X provide an
experimental backend and tell matplotlib to use it? If so, how?