Reputation: 727
I am working on a Qt project, which require visualization of very large data sets (time + value measurements). By very large I mean millions of values.
I need to support scrolling across these values and zoom-in/out operations in the time axis. The ultimate zoom-out should show all the data set sub-sampled to match the window width.
Here are the Qt toolkits I know for drawing the functions:
I've actually two questions:
If you have any other relative comment / idea regarding my problem, feel free to share.
Thanks :)
Upvotes: 5
Views: 8027
Reputation: 20482
though Qwt is good; you might also want to give a try to the chart component from the AnalogWidgets set
Upvotes: 0
Reputation: 827
MathGL was designed to handle huge data set (about hundreds Mb or several Gb). It also have Qt widget.
Upvotes: 1
Reputation: 2936
Well, I'm working in a QT Project too, and I'm using Qwt. I can say that Qwt is a good solution because is:
This is a starter tutorial about Qwt, I hope it helps: Tutorial
About the other options I cannot say anything because I don't know them.
See you!
Upvotes: 2