views:

101

answers:

2

hello ,
im working on a (asset management) system to handle assets , resources and progress of tasks
i want to have a gantt chart in my system

im using python 2.6 and pyqt . is there any (already made charts python library ) ? that can work well with pyqt.

or should i make a custom widgets for this ? please advice.

thanks in advance

+1  A: 

These are not pyQt related but you can have a look at http://pypi.python.org/pypi/GanttPV/0.1

or maybe http://pypi.python.org/pypi/xm.charting/0.3

I have not used any of them though so I can not give you more specific info.

joaquin
A: 

Check out the faces project. It uses little Python scripts to define tasks and dependencies, and generates a number of Gantt and other project management graphics.

Paul McGuire