I need to implement some plot like that or that in my app , it can be even something similar.
I made a search on Qt web site with no progress , and i saw Qwt package but nothing similar there .
Any ideas ?
Thanks a lot .
|
|
|
I strongly recommend Qwt. Qwt is a mature, well-documented library and, I think it's fair to say, the standard solution for implementing plots and other display and control widgets in Qt. If you need 3D plots, try QwtPlot3D. |
|||
|
|
|
I'm using |
||||
|
|
|
As an alternative to Qwt you might also consider qt-plotting-widget which may be a simpler option. |
|||
|
|
|
Qt has no support for plotting out of the box. The most basic solution is to use QGraphicsView. Simply render your plot using the various items. Other than that, you can follow this thread. It contains a couple of pointer to plotting frameworks but I don't know how useful they are or whether they are still supported in Qt 4.x. |
|||
|
|
|
Here is an answer with source code for plotting points in a QGraphicsView very easily (11 lines of code). It doesn't seem like it does it out of the box at first, but it is just because the Graphics View Framework is a lot more powerful than a standard painter. |
|||
|
|
|
OpenGL is an excellent graphics drawing language in which you can implement something like this, and it is widely supported. |
|||
|