Stacked Graphs
Geometry & Aesthetics
 All Classes Functions Variables Enumerations
themerivergraphlayouter.h
1 #ifndef THEMERIVERGRAPHLAYOUTER_H
2 #define THEMERIVERGRAPHLAYOUTER_H
3 
4 #include <QObject>
5 #include "graphlayouter.h"
6 
11 {
12  Q_OBJECT
13  Q_INTERFACES(INamedObject)
14 
15 public:
16  ThemeRiverGraphLayouter(QObject *parent);
18 
19  QString GetName() { return "ThemeRiver"; }
20 
21 private:
22  void calculateBaseLine(DataSet& dataset, QVector<double>& baseline);
23 
24 };
25 
26 #endif // THEMERIVERGRAPHLAYOUTER_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: themerivergraphlayouter.h:19
Class describes the themeriver layouting algorithm which simply centers the baseline and therefore th...
Definition: themerivergraphlayouter.h:10
Interface for objects which have a name.
Definition: namedobject.h:9