Qt Charting Component - Feedback request
-
[quote author="2beers" date="1299170091"]Woow. I like those screenshots . Impressive work. [/quote]
Thank you for your kind words. Does the basic API I have shown so far look OK to you? I can post more snippets if you want more details for a discussion.
I am also open to feature requests if there is a chart type or something else I am missing.
-
yes. you can make a video to see the charts in action. My idea was to use QML for some animated eye-candy charts. you can see at this examples by fusioncharts done in flash to make an idea: http://www.fusioncharts.com/demos/blueprint/
and
http://www.fusioncharts.com/demos/[quote author="ZapB" date="1299170331"]
I am also open to feature requests if there is a chart type or something else I am missing.[/quote]
I didn't see any pie chart in those pics. It might be useful. 3D pie chart will also be exceptional.
-
[quote author="2beers" date="1299207584"]yes. you can make a video to see the charts in action. My idea was to use QML for some animated eye-candy charts. you can see at this examples by fusioncharts done in flash to make an idea: http://www.fusioncharts.com/demos/blueprint/
and
http://www.fusioncharts.com/demos/
[/quote]OK interesting. Thanks for the link. Here's a short "video":http://www.theharmers.co.uk/model-anim.ogv showing one way in which the data can be animated when values change. This example is the one that uses a itemview model as the data source. The animation looks better locally than in the video.
When the dataset is changed (in this case via a signal from the underlying Qt itemview model) the dataset notifies the data series which delegates the task of updating the graphics items to a Behaviour object set on the data series. A user could provide their own custom Behaviour object to customise the animations that take place when data is added/removed/modified. As always there is still work to do on this but it is useable already.
[quote author="2beers" date="1299207584"]
I didn't see any pie chart in those pics. It might be useful. 3D pie chart will also be exceptional. [/quote]Ah yes sorry I forgot to post a screenshot of pie charts. These are still in the early stages and I am still playing around with templates to find a way to make them work with custom data types (as long as they provide operator + and operator / of course). Anyway, here's a "screenshot":http://gallery.theharmers.co.uk/picture.php?/14/category/5.
I have also made a "video":http://www.theharmers.co.uk/pie.ogv of the pie charts being animated. The animation looks better locally than what recordmydesktop shows in the video.
To do this I just retrieved a pointer for the two pie charts and then used QPropertyAnimation in the usual way. The pie charts are just inherited from QGraphicsObject.
Here is the code snippet used to create the two pie charts shown:
@
// Create a new plot
ZPlot* plot = new ZPlot( page );// Set a title plot->setTitleText( "Revenue by Product Stream" ); // Add plot to the page's layout page->layout()->addItem( plot, 0, 0 ); // Use data to create a new dataseries in the "Default" plot area ZDataSetPtr dataSet1 = ZDataSetPtr( new ZDataSet( data ) ); ZDataSeries* series1 = plot->addDataSeries( dataSet1, QString( "Series 1" ), Pie ); ZPieItem* pie = series1->pie(); pie->setPos( QPointF( -0.4, 0.5 ) ); pie->setRadius( 180.0 ); pie->explodeSlice( 4, 0.25 ); // Use data to create a new dataseries in the "Default" plot area ZDataSetPtr dataSet2 = ZDataSetPtr( new ZDataSet( data2 ) ); ZDataSeries* series2 = plot->addDataSeries( dataSet2, QString( "Series 2" ), Pie ); // Customise the pie chart a little ZPieItem* pie2 = series2->pie(); pie2->setRadius( 130.0 ); pie2->setPos( QPointF( 3.0, 0.0 ) ); pie2->explodeAll( 0.1 );
@
where "page" is just a pointer to a QGraphicsItem derived object acting as a container (in this case ZPlotPage which is the blue gradient filled background object).
-
Oops I forgot to mention, in the above pie chart snippet the second pie chart is given a position of (3.0, 0) to make it appear off the right-hand side of the screen ready to be animated in (see video). The pie chart plots use a coordinate system going from -1 to 1.
-
It's an impressive job you done there. Congrats. My suggestion is if you wanna move to QML go directly with qml scene graph so you don't have to change much once is ready.
Another reason by going with QML is that you can use their already predefined animation effects.
Good luck and let us know about future changes
-
[quote author="2beers" date="1299241208"]It's an impressive job you done there. Congrats. My suggestion is if you wanna move to QML go directly with qml scene graph so you don't have to change much once is ready.
[/quote]Thank you. I have been keeping an eye on the scene graph stuff. I would also like to make this charting component available via C++ too in addition to QML so I need to figure out how to best provide capabilities to both approaches. It's a shame that a scene graph backend to QGraphicsView didn't work out.
[quote author="2beers" date="1299241208"]
Another reason by going with QML is that you can use their already predefined animation effects.Good luck and let us know about future changes[/quote]
Agreed, although it is also trivial to do so with QPropertyAnimation etc which is what QML uses under the bonnet I believe.
Thanks for your feedback. I'll post updates as I add new features and eventually release.
-
Hi Sean,
Thank you for this very interesting charting component. I look forward to diving into it further. The code you show off here looks fine, though I'd have to take a look at the real requirements to see if this would work out for me in practice. Still, it looks like it could!
I am wondering how these charting components differ from existing ones on the market. Qwt and KDAB's offerings come to mind. Do you have a different design philosophy from theirs? Also important, of course, is the licence(s) this will be available under.
All in all: it looks impressive and quite slick!
-
Hey André,
[quote author="Andre" date="1299317475"]
Thank you for this very interesting charting component. I look forward to diving into it further. The code you show off here looks fine, though I'd have to take a look at the real requirements to see if this would work out for me in practice. Still, it looks like it could!
[/quote]No problem. Thank you for taking the time to check it out. Wrt the API requirements, let me know what sort of thing you would like it to be able to do or feel free to ask for some existing API snippets and I will gladly post them for review.
Much of it of course is still subject to change. For example it is already quite simple to plot a function (either a C++ one or a QtScript one) but I think that I can still make the API simpler for the common cases without loss of generality.
[quote author="Andre" date="1299317475"]
I am wondering how these charting components differ from existing ones on the market. Qwt and KDAB's offerings come to mind. Do you have a different design philosophy from theirs? Also important, of course, is the licence(s) this will be available under.
[/quote]This is based directly on top of QGraphicsView whereas other competing charting components are (as far as I am aware) based on QWidget. This makes certain things simpler and lighter-weight. For example I have written some custom QGraphicsLayout classes. One of these is used to dock the legend (or any other QGraphicsWidget derived object) to the inside or outside of the plot area. Something like this will dock the legend at the inside top-center of the plot area and make the legend lay it's items out horizontally:
@
ZGraphicsDockerWidget* legendDocker = plot1->plotArea()->legendDocker();
legendDocker->setSimplePosition( DockInside, TopCenter );
legendDocker->setHorizontalAnchorSpacing( 0.0 );
plot1->plotArea()->legend()->setOrientation( Qt::Horizontal );
@Of course this can be made even simpler by:
making the theme/style aware that the horizontal anchor spacing should be zero when using a centre alignment in the horizontal direction
making some simple forwarding functions on ZPlot that forwards calls onto the default plot area instead of having to have explicit calls to plotArea( const QString& plotAreaName = "default" ) in there.
That is just a little syntactic sugar though. That is just a simple example of the ZGraphicsDockLayout though. Much more is possible with it that I have shown here.
I am also aiming to be able to produce business-like charts (ie for use in dashboards, presentation etc.), production quality charts suitable for scientific publications, and high-performance charts for plotting of real-time data. This should be possible by simply using a suitable chart theme and a sensible choice of data series plot elements. For example it would not make sense to use spline-based curves for a high-performance real-time plotting application but it might for a business presentation/dashboard.
As for licenses I am thinking of a commercial license (with support) plus one or more FOSS licenses. I would like to see it used and if I can earn a little money with it then so much the better as I'll be able to dedicate some more time into future improvements and some other project ideas I have in mind.
[quote author="Andre" date="1299317475"]
All in all: it looks impressive and quite slick!
[/quote]Many thanks. Still lots more to come!
-
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.
-
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 author="ZapB" date="1299319762"]Hey André,
[quote author="Andre" date="1299317475"]
Thank you for this very interesting charting component. I look forward to diving into it further. The code you show off here looks fine, though I'd have to take a look at the real requirements to see if this would work out for me in practice. Still, it looks like it could!
[/quote]No problem. Thank you for taking the time to check it out. Wrt the API requirements, let me know what sort of thing you would like it to be able to do or feel free to ask for some existing API snippets and I will gladly post them for review.
[/quote]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]I am also aiming to be able to produce business-like charts (ie for use in dashboards, presentation etc.), production quality charts suitable for scientific publications, and high-performance charts for plotting of real-time data. This should be possible by simply using a suitable chart theme and a sensible choice of data series plot elements. For example it would not make sense to use spline-based curves for a high-performance real-time plotting application but it might for a business presentation/dashboard.
[/quote]Data visualization is only becomming more important. Animation is a great feature to have, because it enables you to create time series in a simple way (I hope your API makes that possible?) 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. I guess it would make sense if it were doable for a user to exend the framework with new graph types, so I am curious to the API to implement for that too (it is the "other end" of the model API I asked for just above, I guess :-) )
-
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();
};
@So far I have subclassed two concrete classes from this interface:
- ZDataSet which is a convenience implementation much like QStandardItemModel is for QAIM and
- ZModelDataSet which acts as a bridge to existing QAIM based datasets
I am planning a 3rd concrete subclass implemented in terms of QCircularBuffer (If my merge request ever gets reviewed ;-)) which will allow the high performance plotting of real-time data series. With this class the data series will show up to the n most recent points (ie data for the last hour etc). Older points will be automatically overwritten by new incoming points. This should remove any new's/delete's of QGraphicsItems or memory allocation within the dataset. This would be useful in system monitor type apps too ie ksysguard.
-
In addition to the obvious functions for inserting/removing data and accessing the data you may have noticed a couple of other aspects:
@
virtual DataDescriptionFlags dataDescription() const = 0;
@This is used to describe the type of data contained within the data set. Obviously not all types of data can be plotted in all ways. For example, a bubble plot needs 2 y values (one for the position and one for the value that determines the size of the point (more on this later). The descriptions that I support for far are:
@
enum DataDescriptionFlag
{
NoData = 0x00000000,
OneDimensional = 0x00000001,
TwoDimensional = 0x00000002,
ImplicitTwoDimensional = 0x00000004,
ScalarField = 0x00000008,
VectorField = 0x00000010,
PlaneTensorField = 0x00000020,
IndexedScalarField = 0x00000080,
StockTimeSeries = 0x00000100
};Q_DECLARE_FLAGS( DataDescriptionFlags, DataDescriptionFlag );
Q_DECLARE_OPERATORS_FOR_FLAGS( DataDescriptionFlags );
@I have not yet implemented any graphical forms for PlaneTensorField (think plane stress tensor) and StockTimeSeries as yet. Each of the above data description types can be plotted in one or more ways.
-
The other aspect in the ZAbstractDataSet interface of interest is:
@
void registerVariableMapper( int typeId, ZAbstractVariableMapperPtr mapper );
QHash<int, ZAbstractVariableMapperPtr> variableMappers() const;
@I'll try to explain this a little. A data set may take many forms. Let us consider possible data sets for a simple 2d xy scatter plot. Some possible forms for each point in the data set are:
- QPointF
- QPoint
- QPair<double, double>
- QPair<int, int>
- Eigen::Vector2d
- ...
I have tried to make it such that I can support any format of point so long as it is supported by QVariant. Obviously I do not really want to have to write a corresponding graphical class for each type of data that we support. After all the graphical representation should be the same no matter the details of where it's position came from.
To this end I have introduced the concept of variable mappers. The graphical items need to know things like what position should I draw myself at, or what size should I be. To do this the data series asks the ZAbstractDataSet for pieces of data using the function:
@
virtual QVariant data( int index, const QString& variable ) const = 0;
@where the variable is "x", "y", "position", "scalar", "vector" etc depending upon what info it needs to be able to render the plot type.
NB I am planning on replacing these strings with an enum value at some point to eliminate string comparisons.
Anyway, since the data set classes that I ship cannot possibly know about all the data type that people may wish to use, I have delegated the details of these data requests to so-called variable mappers. My data set classes register a number of supplied variable mappers at creation time but a user can register their own for their custom data types. The implementation of a variable mapper is very simple. Here is an example mapper for an Eigen::Vector2d type:
@
class Vector2dTypeMapper : public PlotLib::ZAbstractVariableMapper
{
QVariant extractVariable( int index, const QVariant& v, const QString& variable ) const
{
Q_UNUSED( index );
if ( variable == "x" )
{
return QVariant( v.value<Vector2d>().x() );
}
else if ( variable == "y" )
{
return QVariant( v.value<Vector2d>().y() );
}
else if ( variable == "position" )
{
Vector2d vec = v.value<Vector2d>();
QPointF p( vec.x(), vec.y() );
return p;
}
return QVariant();
}
};
@Only this one function needs to be implemented. Each variable "x", "y" etc has it's own data type that it needs to be converted to. Some of these are "x", "y", "scalar"=>double; "position"=>QPointF etc.
I know that this sacrifices a little speed but it does make it very flexible.
-
[quote author="Andre" date="1299317475"]
Data visualization is only becomming more important. Animation is a great feature to have, because it enables you to create time series in a simple way (I hope your API makes that possible?)
[/quote]Yes this is possible. I have used this at work to plot magnetic data as it is collected. This work showed multiple xy-scatter data series (one for each frequency in use). The simple animation I set up was for the point to fade in and increase in scale from some small number. For the scale animation I used an easing curve with a little overshoot (I can't recall the exact one offhand). This made each point appear to "pop" into existance. It looks quite nice in use :-)
Each element of the plot is just derived from a QGraphicsObject so you can do all the usual animation techniques. I have not tried animating a new point in from a different position yet. The position is controlled by it's parent at present so I need to look into how to do this but it should be possible. We just treat the position as the animation end point.
[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 :-) I have not yet started on polar/rose type charts (although I do have some of the building blocks in place such as a polar coordinate system class).
Bubble plots are supported now. Here is a simple example:
@
#include <QApplication>#include <zdataseries.h>
#include <zdataset.h>
#include <zplot.h>
#include <zplotwidget.h>using namespace PlotLib;
int main( int argc, char *argv[] )
{
QApplication app( argc, argv );
ZPlotWidget w;
w.plot()->setTitleText( "Bubble Plot" );// Add a bubble plot - y2 is proportional to size of point ScalarField2D scalarField; for ( int i = 0; i < 11; ++i ) { double x = -5 + double( i ); double y = x * x; double y2 = qMax( 0.3, qAbs( x ) ); scalarField.append( ScalarField2DPoint( Vector2d( x, y ), y2 ) ); } ZDataSetPtr dataSet( new ZDataSet( scalarField ) ); ZDataSeries* series = w.plot()->addDataSeries( dataSet, "Bubble Plot", Bubble ); series2->setLegendText( "A bubble series" ); w.show(); return app.exec();
}
@This produces the following output:
!http://www.theharmers.co.uk/ZtPlot-010.png(Bubble plot)!
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 author="Andre" date="1299317475"]
I guess it would make sense if it were doable for a user to exend the framework with new graph types, so I am curious to the API to implement for that too (it is the "other end" of the model API I asked for just above, I guess :-) )
[/quote]I am still in the process of adding new plot types myself so I have not gotten round to exposing this kind of extension in an easy and well-documented way yet. I am learning lessons each time I do it though.
It is simple enough to customise existing plots though since everything is just a QGraphicsItem, QGraphicsObject or QGraphicsWidget at the end of the day. You can easily add your own child objects where needed.
Also, as I mentioned on the qt-interest list, all replaceable items will eventually be created by factory classes so as to allow easy replacement by user-specified items for easily customisable behaviour too.
I am hoping that the above will lead to a plotting/charting library that is:
- easy to use in the common cases
- easily extended by adding in your own items
- easily customised by using custom factories and items
- easy to use with custom data types
- relatively simple to add new plot types to
- yet still be high-performance and good looking :D
I hope that answers your queries. Feel free to come back again if I have not addressed anything properly.
Edit: fixed quoting
-
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.