aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-11-30 15:38:42 +0100
committerStas Vilchik <vilchiks@gmail.com>2015-11-30 15:38:52 +0100
commit8daa623f4787c12a42cf3687430702ea294583f5 (patch)
treef70c21913c26c469840810cf58d02052b8557e20 /server/sonar-web/src/main/js/helpers
parentb0bb06b6b6522c403c2935830db4ae155caa6840 (diff)
downloadsonarqube-8daa623f4787c12a42cf3687430702ea294583f5.tar.gz
sonarqube-8daa623f4787c12a42cf3687430702ea294583f5.zip
SONAR-6946 Add an ability to drilldown on the overview treemap
Diffstat (limited to 'server/sonar-web/src/main/js/helpers')
-rw-r--r--server/sonar-web/src/main/js/helpers/constants.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/helpers/constants.js b/server/sonar-web/src/main/js/helpers/constants.js
index d1ba85c5395..80653c27a68 100644
--- a/server/sonar-web/src/main/js/helpers/constants.js
+++ b/server/sonar-web/src/main/js/helpers/constants.js
@@ -2,3 +2,4 @@ export const SEVERITIES = ['BLOCKER', 'CRITICAL', 'MAJOR', 'MINOR', 'INFO'];
export const STATUSES = ['OPEN', 'REOPENED', 'CONFIRMED', 'RESOLVED', 'CLOSED'];
export const CHART_COLORS_RANGE_PERCENT = ['#00aa00', '#80cc00', '#ffee00', '#f77700', '#ee0000'];
+export const CHART_REVERSED_COLORS_RANGE_PERCENT = ['#ee0000', '#f77700', '#ffee00', '#80cc00', '#00aa00'];