How to add a scroll bar to a table

zhangh1> Hi, all: I added a table to my figure using 'table'
    zhangh1> function. But since this table is very long, the user can
    zhangh1> only see part of it. Is there any easy way to add a
    zhangh1> scroll bar to the chart so that the user can scroll it
    zhangh1> down and see it? Thanks

You would have to use the embedding_in_yourgui.py examples to write
your own GUI, ex examples/embedding_in_gtk.py

JDH

I mean in the original data format, without any characters like "[],"
Thanks

Does this help:

a = [[1, 2, 3], [4, 5, 6]]
f = open("output.txt", "w")
for row in a:
    f.write(" ".join(row))
    f.write("\n")
f.close()

Check this also:
http://effbot.org/librarybook/csv.htm

HTH,
Edin

···

On 10/9/06, zhangh1@...1278... <zhangh1@...1278...> wrote:

I mean in the original data format, without any characters like ","
Thanks

-------------------------------------------------------------------------
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
matplotlib-users List Signup and Options