2

What are the best libaries for creating interactive (zoom, pan, create online annotations) charts in python?

I've checked Pretty graphs and charts in Python but this does not address zoom, pan, and annotation capabilities.

Community
  • 1
  • 1
eran
  • 14,496
  • 34
  • 98
  • 144

1 Answers1

2

I'm not sure what you mean by "annotation" in this context, but matplotlib graphs are well-suited for interactive work, and include very good zooming and panning capabilities built-in.

Eli Bendersky
  • 263,248
  • 89
  • 350
  • 412
  • At first I thought the OP was referring to regular ol' [plot annotation](http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.annotate), but now I'm wondering what the 'online' part means. Anyway I'd second matplotlib, it's a great charting library. – ChrisC Oct 17 '11 at 17:56