diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-08-25 11:04:36 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-08-25 17:53:46 +0200 |
commit | 674c28368e61d82b2b14dc5d77b21e411f05d30d (patch) | |
tree | b66eb6470756a98e0cd3057926470e4d9a2302be /server/sonar-web/src/main/js/apps/component-measures/config | |
parent | 7ead7ff7472a6cbf4e67b56bcaa8ec2926decca3 (diff) | |
download | sonarqube-674c28368e61d82b2b14dc5d77b21e411f05d30d.tar.gz sonarqube-674c28368e61d82b2b14dc5d77b21e411f05d30d.zip |
Invert y axis of project and coverage overview bubblecharts on measures page
Diffstat (limited to 'server/sonar-web/src/main/js/apps/component-measures/config')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js b/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js index 12aa314d30b..04ead5c4e4e 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js +++ b/server/sonar-web/src/main/js/apps/component-measures/config/bubbles.js @@ -37,12 +37,13 @@ export const bubbles = { size: 'code_smells', colors: ['sqale_rating'] }, - Coverage: { x: 'complexity', y: 'coverage', size: 'uncovered_lines' }, + Coverage: { x: 'complexity', y: 'coverage', size: 'uncovered_lines', yDomain: [100, 0] }, Duplications: { x: 'ncloc', y: 'duplicated_lines', size: 'duplicated_blocks' }, project_overview: { x: 'sqale_index', y: 'coverage', size: 'ncloc', - colors: ['reliability_rating', 'security_rating'] + colors: ['reliability_rating', 'security_rating'], + yDomain: [100, 0] } }; |