That's unfortunate that a subplot cannot be bounded within a scrollbar.. I 
guess if it could be possible to turn a subplot into a GUI widget and have GUI 
widgets over another GUI widget (the frame), that'd be good...
 
 I was wondering how we can differentiate between data on a subplot and the 
background. i.e, if there is a subplot such as:

_________________________________
|   ______/\___                                                |
|  /                  \                                              | 
|                      \                                             |
|_________________________________|

what could be the best way to predict where the subplot starts and ends ?

thanx, iyer

  

John Hunter <[EMAIL PROTECTED]> wrote: On 3/26/07, lazardo  wrote:
>
>  Thanks for your helpful response.
>
>  I used wx, I'm mystified to as how to make the scroll bars bound the
> subplot. not the frame. The gtk example you pointed me to creates horizontal
> and vertical scrollbars around the whole frame, not within the subplot.
> i.e., if the subplot is very large , scrollbars bounding the subplot would
> be great..

This is not possible.  The subplot is not a GUI widget in matplotlib,
it is part of the entire FigureCanvas, which is a widget.  You can
make the Axes take up all of the figure area if you want

ax = axes([0,1,0,1])

but then you will not see you tick labels and axis labels as they will
be outside the canvas area....


JDH


 
---------------------------------
Bored stiff? Loosen up...
Download and play hundreds of games for free on Yahoo! Games.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to