Re: [Matplotlib-users] Double Zoom in WXAgg backend
Mike, Thanks for your help! Cheers, Jervis > -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App
Re: [Matplotlib-users] Double Zoom in WXAgg backend
In your example, you are adding the axes to the figure twice: axes = self.figure.add_subplot(1, 1, 1) self.figure.add_axes(axes) add_subplot both creates and adds the axes to the figure, so it is unnecessary to later add it. add_axes is intended for axes that have been created