diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-01 22:18:51 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-02 11:04:03 -0800 |
commit | ca572acb0d23aef77fda896d08f2b1af360c5e99 (patch) | |
tree | 9f8de5b0a31e9a293bac29a6fe4c4e58bad3e018 /stats/CMakeLists.txt | |
parent | 99f98ea6d482c7bb5526fad8246e12bb8714b252 (diff) | |
download | subsurface-ca572acb0d23aef77fda896d08f2b1af360c5e99.tar.gz |
statistics: implement a bar series
Implement a bar series, which can plot stacked, grouped and single
bar charts in horizontal or vertical ways. On hovering over a
bar, an information is shown. The shown information depends on
whether the chart is count or value based, or is a multi-bin
chart.
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 e8f49e35f..03ef73b28 100644 --- a/stats/CMakeLists.txt +++ b/stats/CMakeLists.txt @@ -5,6 +5,8 @@ include_directories(. ) set(SUBSURFACE_STATS_SRCS + barseries.h + barseries.cpp informationbox.h informationbox.cpp legend.h |