Qt Charting Component - Feedback request
-
Hi Ed,
[quote author="emsr" date="1299458270"]Greetings Sean,
Thank you very much for your effort.
I would like to see polar plot.s I do a lot of 2D gain patterns of antennas and such.
The ability to plot (linear but mostly log) and scale multiple series would be most excellent.
I tried what looked like an add on to Qwt but couldn't get it to compile.
Thank you again. I would love for this to become a standard component.
Ed
[/quote]Polar plots are indeed on my feature requirements list. I do not have them finished yet but they will be supported with both linear and log radial scales. I need them too for my day job ;-)
-
Hi,
[quote author="kofee" date="1299455232"]Hi Sean,I really like it, it looks good and the API seems easy to use.
I would definitely use it right away if it had support for:
- QDateTime (I see work in progress, good :) )
- one y axis per data serie (different units/scale)
- show/hide data serie (ticking a box in the app triggers it)
- select area in the plot that emits first and last x values (why not y as well)
Can't wait to see what you'll come up with.[/quote]
Cool, thank you for your words of encouragement. The current status is:
- QDateTime support as you noticed is work in progress. I can plot data series containing QDateTimes as the x-values for e.g. The plot looks correct however the axis labels do not yet show properly formatted strings for the QDateTime values. This is easily solved, I just need to extend my tick mark engine class to handle this data type.
- Multiple axes is alrady supported but is currently slightly broken due to some refactoring I am doing. I did have it working before the refactoring though so I should be able ot get it back fairly easily.
- Show/hide a data series is very simple:
@
m_plot->plotArea()->dataSeries( "my data series name" )->hide();
@ - Selection: I have not looked at this yet but since I am using QGraphicsView I do not think that this should be difficult.
I'll add more posts as I complete these features.
-
[quote author="ZapB" date="1299494065"][quote author="Andre" date="1299317475"]
But also try to considder some less frequently used chart types that can be useful. Think about spidergrams, for instance (the cobweb like diagrams), or bubble graphs. But also diagrams of the type where the diagram area is filled up with boxes, each of these representing a data point and sized to represent the relative value of that point (I don't remember the name of this visualization) is helpful to gain insight sometimes.
[/quote]I thought that was what a bubble plot is? At least that is what excel calls them :-)
[/quote]
No, sorry, I think I have not made myself clear. I was more thinking about visualizations like the one used in "this presentation":http://www.youtube.com/watch?v=pLqjQ55tz-U&feature=player_embedded (from 45 seconds onwards) or even in a hierarchical form as used for things like visualizing hard disk space used, such as in "this application":http://lifehacker.com/#!219058/geek-to-live--visualize-your-hard-drive-usage.[quote]
I also have ways for the user to provide custom functions that determine the colour and size of the points. The functions can make use of the position or scalar field value (ie the y2 value) to determine this. I used this code to produce the colouring shown in the "scalar field example":http://gallery.theharmers.co.uk/picture.php?/11/category/5@
class MyColorFunction : public ZScalarColorFunction
{
public:
QColor operator() ( const ScalarField2DPoint& x ) const
{
double f = x.second; // Use the y2 value
f = qBound( 0.0, f, 1.0 );
int hue = int( 120.0 * ( 1.0 - f ) );
QColor c;
c.setHsv( hue, 255, 200 );
return c;
}
};int main( int argc, char argv[] )
{
...
// Create a data series and set the plot type
ZDataSeries series = plot1->addDataSeries( createFunction(), "Series 1", Bubble );// Customise the plot a little by setting a custom color function ZBubbleItemGroup* field = series->bubbles(); ZScalarColorFunctionPtr colorFunc( new MyColorFunction ); field->setColorFunction( colorFunc );
...
}
@The default colour and scale function objects also provide some limited options for customisation.
[/quote]
How does this relate to the ZAbstractVariableMapper class you described above? Wouldn't it make more sense to query that class for a suitable color, or do I misunderstand what you are doing here? -
[quote author="Andre" date="1299497646"]
No, sorry, I think I have not made myself clear. I was more thinking about visualizations like the one used in "this presentation":http://www.youtube.com/watch?v=pLqjQ55tz-U&feature=player_embedded (from 45 seconds onwards) or even in a hierarchical form as used for things like visualizing hard disk space used, such as in "this application":http://lifehacker.com/#!219058/geek-to-live--visualize-your-hard-drive-usage.
[/quote]Ah yes I know what you mean now. I am not sure of the technical name for this type of visualisation either. I have not yet implemented this. I'll have to have a think about this one because as you say it uses a potentially hierarchical data source.
[quote author="Andre" date="1299497646"]
How does this relate to the ZAbstractVariableMapper class you described above? Wouldn't it make more sense to query that class for a suitable color, or do I misunderstand what you are doing here?
[/quote]They are not related. This is where I have diverged from the QModelView pattern. I have never been particularly comfortable with having to provide properties that affect the appearance of the views in the data model for QModelView. IMHO the view properties should be set independently from the actual data.
My approach also allows the user to specify a functional form for the colour/scale/other property whereas in QModelView each property has its own role that must be queried from the model.
I suppose I could allow the view to check if the data set provides a value for that property for each point and use that if it does. Then, if the data set does not provide the needed property value it can fall back to the functional form. Hmmm, this would impact performance though. I wonder if I can make it a noop in the common case? I'll take a look.
Thanks for the thoughts.
-
Hi Sean,
[quote author="ZapB" date="1299493871"]Hi André,
I'll reply in a few posts to make it easier to digest...
[quote author="Andre" date="1299317475"]
What I am most interested in, is the API you came up for for your data interface. You said you came up with something that acts like the QAbstractItemModel does for Qt's views, and I am really curious to see that API: how easy is it to reimplement to adapt it to different data backends? How flexible is it? For me, this is probably one of the key parts of the API.
[/quote]Here is the API of my ZAbstractDataSet class which I suppose is the equivalent of QAbstractItemModel:
@
class PLOTLIBAPI ZAbstractDataSet : public QObject
{
Q_OBJECT
public:
explicit ZAbstractDataSet( QObject* parent = 0 );virtual QVariant data( int index, const QString& variable ) const = 0; virtual int size() const = 0; virtual DataDescriptionFlags dataDescription() const = 0; virtual QRectF boundingRect() const; int dataType() const { if ( size() == 0 ) return QVariant::Invalid; return data( 0 ).userType(); } void registerVariableMapper( int typeId, ZAbstractVariableMapperPtr mapper ); QHash<int, ZAbstractVariableMapperPtr> variableMappers() const;
public slots:
virtual void setData( int index, const QVariant& data );
virtual void insertData( int index, int count );
virtual void removeData( int index, int count );
void removeData( int index ) { removeData( index, 1 ); }signals:
void dataReset();
void dataChanged( int start, int end );
void dataAboutToBeInserted( int start, int end );
void dataInserted( int start, int end );
void dataAboutToBeRemoved( int start, int end );
void dataRemoved( int start, int end );protected:
void reset();void beginInsertData( int start, int count ); void endInsertData(); void beginRemoveData( int start, int count ); void endRemoveData();
};
@[/quote]
I don't really understand you design yet, I am sorry. I don't quite see the relationship between ZAbstractVariableMapper and ZAbstractDataSet. I am right that variable from virtual ZAbstractDataSet::QVariant data( int index, const QString& variable ) const plays the role that role does in QAbstractItemModel::data(QModelIndex& index, int role = Qt::DisplayRole) const;?
If so, what then is the place of the ZAbstractVariableMapper?
A move to an enum would be wise, I think. You can define a set of standard "roles" (like is done for QAIM) and extend it as needed.
Also unclear for me is the ZAbstractDataSet::boundingBox() method. What exactly is returned there, especially in conjunction with the ZAbstractVariableMapper? A bounding rect makes sense conceptually for graphs like a vector field or a scatter plot, but what is a bounding rect for a simple one dimensional series you plan to draw in a bar or pie chart?
Last (for now ;-) ) idea that popped up in my head, is that you might be able to optimize your ZAbstractVariableMapper if you resort to use templates here. For a graph type, you just need to be sure that the mapper class implements the interface required for that graph type, but you would not need the additional virtual method call and the conversions to and from QVariant. But perhaps I totally misunderstand the purpose of this class, so I may be off the mark here.
-
[quote author="ZapB" date="1299499026"][quote author="Andre" date="1299497646"]
No, sorry, I think I have not made myself clear. I was more thinking about visualizations like the one used in "this presentation":http://www.youtube.com/watch?v=pLqjQ55tz-U&feature=player_embedded (from 45 seconds onwards) or even in a hierarchical form as used for things like visualizing hard disk space used, such as in "this application":http://lifehacker.com/#!219058/geek-to-live--visualize-your-hard-drive-usage.
[/quote]Ah yes I know what you mean now. I am not sure of the technical name for this type of visualisation either. I have not yet implemented this. I'll have to have a think about this one because as you say it uses a potentially hierarchical data source.
[/quote]
Well, it would already be useful in a non-hierarchical version, as you can see in the movie. But yes, hierarchy would add to the data-richness, especially if you can navigate through it.[quote]
[quote author="Andre" date="1299497646"]
How does this relate to the ZAbstractVariableMapper class you described above? Wouldn't it make more sense to query that class for a suitable color, or do I misunderstand what you are doing here?
[/quote]They are not related. This is where I have diverged from the QModelView pattern. I have never been particularly comfortable with having to provide properties that affect the appearance of the views in the data model for QModelView. IMHO the view properties should be set independently from the actual data.
My approach also allows the user to specify a functional form for the colour/scale/other property whereas in QModelView each property has its own role that must be queried from the model.
I suppose I could allow the view to check if the data set provides a value for that property for each point and use that if it does. Then, if the data set does not provide the needed property value it can fall back to the functional form. Hmmm, this would impact performance though. I wonder if I can make it a noop in the common case? I'll take a look.
[/quote][/quote]
Hmmm, I think I agree on principle that separating presentation and data is a good thing, and that the way these two interfere in the Qt model/view design is less than ideal. I like being able to provide a function for a property, that is pretty neat actually. But it does not make sense in all cases. What you might do, is create a set of standard functions that do nothing more than retrieve the value in question from the model directly? And just set another function to use if you want that? Again, with a bit of template magic, I think it need not even impact runtime performance. -
Hi again,
[quote author="Andre" date="1299499404"]
I don't really understand you design yet, I am sorry. I don't quite see the relationship between ZAbstractVariableMapper and ZAbstractDataSet. I am right that variable from virtual ZAbstractDataSet::QVariant data( int index, const QString& variable ) const plays the role that role does in QAbstractItemModel::data(QModelIndex& index, int role = Qt::DisplayRole) const;?
[/quote]Yes that is correct.
[quote author="Andre" date="1299499404"]
If so, what then is the place of the ZAbstractVariableMapper?
[/quote]Ah OK. ZAbstractVariableMapper is a way for me to provide something akin to the body of the data() function from QAIM for the common cases and to allow users to easily provide a similar body without having to subclass ZAbstractDataSet for themselves.
I appreciate that the need here may not be immediately obvious. I will try to explain a little more. Imagine that the user wishes to plot an xy scatter plot of some data they have calculated. Their calculation routines provide data in the form of My2dPoint objects say. Now, my charting component obviously has no knowledge of this type whatsoever.
"OK", you say, "I can subclass ZAbstractDataType and reimplement all the pure virtual functions". This is correct but then you have to reimplement all of the other logic too such as inseting/removing data, remembering to emit signals or call base class functions when appropriate.
By simply providing a customised sub-class of ZAbstractVariableMapper and registering it, you can get what you need much easier. In this case you can then just use the concrete ZDataSet which provides all the nitty-gritty book-keeping and signal emission code. This effectively removes a lot of the headaches of reimplementing QAIM to get read-write models up and running. The common stuff is done once in ZDataSet and the variable mappers provide an abstraction for the part that varies from user to user.
As a bonus the variable mapper will also work with the ZModelDataSet if you already happen to have a QAIM that exposes the data. It will also work with the circular buffer based dataset when I get that finished too.
I suppose there are alternative ways of doing this too. For example, ZDataSet is based upon a QVector of data points and I have mentioned the upcoming circular buffer one. I could maybe abstract these away using template policy classes. I have some more experimentation to do yet.
Having said all that, I do not expect most people to have to any of this. In the common case you can simply use ZDataSet or another concrete class.
[quote author="Andre" date="1299499404"]
A move to an enum would be wise, I think. You can define a set of standard "roles" (like is done for QAIM) and extend it as needed.
[/quote]Yes I will do this very soon. Not enough hands/brains ;-)
[quote author="Andre" date="1299499404"]
Also unclear for me is the ZAbstractDataSet::boundingBox() method. What exactly is returned there, especially in conjunction with the ZAbstractVariableMapper? A bounding rect makes sense conceptually for graphs like a vector field or a scatter plot, but what is a bounding rect for a simple one dimensional series you plan to draw in a bar or pie chart?
[/quote]This is true. It could be made clearer. As you guessed it is used to determine what x/y limits should be placed on the axes when auto-scaling is enabled. For pie charts and other similar things I adopt a coordinate system of -1 to 1 in the shortest axis with a unity aspect ratio. In this case the plot elements do not call boundingRect() at all and so a stubbed implementation can be used. Once again though simply using the provided ZDataSet will do the right thing (tm) :D
[quote author="Andre" date="1299499404"]
Last (for now ;-) ) idea that popped up in my head, is that you might be able to optimize your ZAbstractVariableMapper if you resort to use templates here. For a graph type, you just need to be sure that the mapper class implements the interface required for that graph type, but you would not need the additional virtual method call and the conversions to and from QVariant. But perhaps I totally misunderstand the purpose of this class, so I may be off the mark here. [/quote]Yes I have wondered about using templates here too. I have just not gotten around to trying it yet.
Thank you again for your comments. They are very useful food for thought and I will try out these ideas.
-
[quote author="Andre" date="1299500755"]
Well, it would already be useful in a non-hierarchical version, as you can see in the movie. But yes, hierarchy would add to the data-richness, especially if you can navigate through it.
[/quote]True. I would like to solve it in general and then simplify. It is often harder to implement the simple case and then generalise it in a clean way without breaking existing code. I am open to ideas if you have any for this. ;-)
[quote author="Andre" date="1299500755"]
Hmmm, I think I agree on principle that separating presentation and data is a good thing, and that the way these two interfere in the Qt model/view design is less than ideal. I like being able to provide a function for a property, that is pretty neat actually. But it does not make sense in all cases. What you might do, is create a set of standard functions that do nothing more than retrieve the value in question from the model directly? And just set another function to use if you want that? Again, with a bit of template magic, I think it need not even impact runtime performance.
[/quote]I do provide default implementations. For example, with the bubble plots the default colour function implementation just returns an invalid QColor. This means that the colour function does not override the default behaviour which is for the data series to be given a colour based upon the data series number. The colour for the i'th data series is provided by the style/theme. Similarly for the bubble-point shape. I do like the idea of being able to potentially override this in the data set though.
In my default theme the series colours are just taken from a selection of the colours in the KDE Oxygen colour palette. I intend to ship more themes/styles with the official release. I'll be after some artistic inspiration a bit later :-)
-
Hi there!
I think you are doing a great job. I'm really interested in such a library, and would be very happy to try it out.
One particular feature I'm very interested in is plotting of streams of data (such as scrolling curves and scrolling images).
You have any plans for this sort of stuff? What kind of API would it have?
cheers and best luck on your project!
ricard -
[quote author="rikrd" date="1301938309"]Hi there!
I think you are doing a great job. I'm really interested in such a library, and would be very happy to try it out.
[/quote]Thank you.
[quote author="rikrd" date="1301938309"]
One particular feature I'm very interested in is plotting of streams of data (such as scrolling curves and scrolling images).You have any plans for this sort of stuff? What kind of API would it have?
[/quote]Do you mean like plotting time series of real-time data? If so then yes, this will be supported. The API will be similar to that used in the Qt ModelView framework. The data set that you are plotting will emit (either manually in a custom sub-class or by calling the append() function of one of the provided convenience classes) an internal signal that is connected to the data series (the graphical representation). The data series then makes the necessary adjustments to take the new data into account and triggers an update. I'll try to make a simple example and post it.
What sort of data do you want to plot as a scrolling image?
-
bq. Do you mean like plotting time series of real-time data? If so then yes, this will be supported.
Yes, that was what I was looking for.
bq. The API will be similar to that used in the Qt ModelView framework. The data set that you are plotting will emit (either manually in a custom sub-class or by calling the append() function of one of the provided convenience classes) an internal signal that is connected to the data series (the graphical representation).
This sounds simple and nice. I like the idea of having a similar API as Qt's ModelView framework. Looking forward to trying it and seeing how it performs.
bq. What sort of data do you want to plot as a scrolling image?
I was thinking of spectrogram-like data. Let's say you want to show a spectrogram of an audio stream scrolling while it is playing.
Another visualization I would be interested in, is a plot that that changes entirely very frequently. Such as the instantaneous spectrum of an audio stream. But I can imagine the API, if it will be similar to the ModelView framework.
If I didn't explained myself well, checkout the "SonicVisualiser":http://www.sonicvisualiser.org/ for the sort of plots I am interested in.
Finally my last question is if you plan to publish your library under some Free software license?
-
Yes that is what I thought you meant but thought I should check. I will try to add in support for that type of plot but I am not sure if it will make it into version 1.
As for the license I am planning to release it under a commercial license plus one or more FOSS licenses. I just wish I had more time to work on it but I am very busy at work at the moment.
-
Just a quick note to report a little bit of progress. I now have this charting component working under the Qt Simulator target. Next step is to get it working on a real Symbian device. Here's a "screenshot":http://gallery.theharmers.co.uk/picture.php?/165/category/5 showing a simple example running under the simulator.
-
[quote author="Michel Pacilli" date="1307918063"]hi,
really nice plots !
[/quote]Thank you.
[quote author="Michel Pacilli" date="1307918063"]
Do you use QGraphicsPathItems for the "line" plots?
And the points symbols?
[/quote]Almost. I have written my own custom QGraphicsItem subclasses. In this case the lines are drawn by a ZSplinePathItem and the points are drawn by ZPointItem. Both these classes inherit from another class of mine called ZTransformedPlotItem which allows the subclasses to easily perform transformations between the natural plot coordinate system and the usual QGraphicsView parent item coordinate system. The idea being that by replacing the coordinate system in use you can change the plot type ie switch to a polar coordinate system.
The ZSplinePathItem uses a QPainterPath internally.
[quote author="Michel Pacilli" date="1307918063"]
the look and feel seems to be really well defined, yes I'd like to play with !great project,
Michel[/quote]
Thank you again. I have a little more work left to do before I will make a first release but I am slowly getting there. Things left to do include:
- Contour plots (these are almost done)
- Bar/column charts
- More style abstractions for easier customisation
- Peformance optimisations
- Lots more testing ;-)
I'll post back here as I make progress.
-
Woohoo! I've just managed to get the basic plot example (shown above running in the simulator) to run natively on Symbian^3. This feels like a major step for me and it shows that we can now relatively easily create applications containing charts on desktop, embedded and mobile targets. :D
The only changes I made compared to the same example built for desktop was to make the font size a little smaller to make better use of the available space and to call QWidget::showFullScreen() rather than QWidget::show() on the QGraphicsView. I'll try to factor the font size adjustments into the library. The choice between show() and showFullScreen() is down to the application writer.
-
"This question":http://developer.qt.nokia.com/forums/viewthread/6950/ was split off as a separate topic.