diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-05 13:51:39 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-06 12:31:22 -0800 |
commit | ab324ed769b4d39816020bf649defb61cb4bff41 (patch) | |
tree | 066dfab03a5d3a370b7928d53eb0c18d96cda62e /stats/statscolors.h | |
parent | 8dfa3f6db3eda8bce432afb7407efe2d8822ebbd (diff) | |
download | subsurface-ab324ed769b4d39816020bf649defb61cb4bff41.tar.gz |
statistics: paint custom grid
With removal of QtCharts' axes, the grid was lost. Readd it.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/statscolors.h')
-rw-r--r-- | stats/statscolors.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stats/statscolors.h b/stats/statscolors.h index 926e2e489..e9775e2a6 100644 --- a/stats/statscolors.h +++ b/stats/statscolors.h @@ -12,6 +12,7 @@ inline const QColor highlightedBorderColor(0xaa, 0xaa, 0x22); inline const QColor darkLabelColor(Qt::black); inline const QColor lightLabelColor(Qt::white); inline const QColor axisColor(Qt::black); +inline const QColor gridColor(0xcc, 0xcc, 0xcc); QColor binColor(int bin, int numBins); QColor labelColor(int bin, size_t numBins); |