diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-01 22:23:29 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-02 11:04:03 -0800 |
commit | b0bdef469ee142f09b3994eddc8dba0d5c6f79c3 (patch) | |
tree | 6bf21021c8556b57091d4d92fdda6b8e34f3ef53 /stats/CMakeLists.txt | |
parent | ca572acb0d23aef77fda896d08f2b1af360c5e99 (diff) | |
download | subsurface-b0bdef469ee142f09b3994eddc8dba0d5c6f79c3.tar.gz |
statistics: implement a box-and-whisker series
Implements a simple box-and-whisker series to display
quartile based data. When hovering over a box-and-whiskers
item the precise data of the quartiles is shown.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/CMakeLists.txt')
-rw-r--r-- | stats/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stats/CMakeLists.txt b/stats/CMakeLists.txt index 03ef73b28..b672e4a53 100644 --- a/stats/CMakeLists.txt +++ b/stats/CMakeLists.txt @@ -7,6 +7,8 @@ include_directories(. set(SUBSURFACE_STATS_SRCS barseries.h barseries.cpp + boxseries.h + boxseries.cpp informationbox.h informationbox.cpp legend.h |