Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
streamgraphlayouter.h
1 #ifndef STREAMGRAPHLAYOUTER_H
2 #define STREAMGRAPHLAYOUTER_H
3 
4 #include <QObject>
5 #include "graphlayouter.h"
6 
12 {
13  Q_OBJECT
14  Q_INTERFACES(INamedObject)
15 
16 public:
17  StreamGraphLayouter(QObject *parent);
19 
20  QString GetName() { return "Stream"; }
21 private:
22  void calculateBaseLine(DataSet& dataset, QVector<double>& baseline);
23 
24 };
25 
26 #endif // STREAMGRAPHLAYOUTER_H
The data set.
Definition: dataset.h:85
Derived classes provide layouting functionality.
Definition: graphlayouter.h:11
QString GetName()
Returns a user-presentable name for the object.
Definition: streamgraphlayouter.h:20
Class describes the layouting algorithm used in the streamgraph stacked graph The baseline is calcula...
Definition: streamgraphlayouter.h:11
Interface for objects which have a name.
Definition: namedobject.h:9