diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-04 20:34:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-06 12:31:22 -0800 |
commit | ccc95f938a8538bde005b2865dc2868ffa8946c8 (patch) | |
tree | f7002968f107cae291f1ee38daa3533f1f8ed1f6 /stats/statsseries.h | |
parent | 23d781debab71d7cdac2fd9213938c33376a8bf1 (diff) | |
download | subsurface-ccc95f938a8538bde005b2865dc2868ffa8946c8.tar.gz |
statistics: save axis with series
In the future we want to use our own axis implementation to
convert from/to screen coordinates. For this purpose, we
need to save the axes with the series. Especially if we want
to support multiple series on different axes.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/statsseries.h')
-rw-r--r-- | stats/statsseries.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stats/statsseries.h b/stats/statsseries.h index 567f32644..9b247fb95 100644 --- a/stats/statsseries.h +++ b/stats/statsseries.h @@ -22,6 +22,8 @@ public: virtual void updatePositions() = 0; // Called if chart geometry changes. virtual bool hover(QPointF pos) = 0; // Called on mouse movement. Return true if an item of this series is highlighted. virtual void unhighlight() = 0; // Unhighlight any highlighted item. +protected: + StatsAxis *xAxis, *yAxis; // May be zero for charts without axes (pie charts). }; #endif |