Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a program using PySide and Qt. I need to graph some data, can anyone suggest a tool that would be able to display graphs within the program (in a layout) instead of opening a new window and displaying the graph.

Thank you Very Much!

share|improve this question
I believe GraphViz can be embedded into other programs somehow. How exactly to wire it up through Python I've no idea though. It's also not very high-level integration, you have to implement the drawing yourself, GV will just hand you a description of what shapes go where on the canvas. – millimoose Jan 13 at 3:24
A quick google found this, it might be helpful for you: github.com/eccam/PySideGraph/wiki/… – Gary Jan 13 at 3:26
1  
Unless you mean charts/plots and not graphs in the mathemathical sense. Then you want matplotlib. – millimoose Jan 13 at 3:26

1 Answer

matplotlib can be embedded in qt applications quite easily. They have have a QT backend which provides their core graphics objects as derivatives of QWidget.

For an example see here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.