From b258259d70f9b701e0baa4e4554f32833d980656 Mon Sep 17 00:00:00 2001 From: Angelos Chatzimparmpas Date: Sun, 3 Jan 2021 15:16:56 +0100 Subject: [PATCH] new --- frontend/src/components/FeatureSpaceDetail.vue | 4 ++-- frontend/src/components/Heatmap.vue | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/FeatureSpaceDetail.vue b/frontend/src/components/FeatureSpaceDetail.vue index 13b2691..42c40b9 100644 --- a/frontend/src/components/FeatureSpaceDetail.vue +++ b/frontend/src/components/FeatureSpaceDetail.vue @@ -613,7 +613,7 @@ export default { if (groupsColor.getAttribute('fill') == "black") { if (selectionCounter < 3) { // add here the different states of comparison! (=2 and =3) - groupsColor.setAttribute('fill', 'yellow') + groupsColor.setAttribute('fill', '#D3D3D3') selectionCounter = selectionCounter + 1 EventBus.$emit('Counter', selectionCounter) IDsGather.push(idLocal); @@ -815,7 +815,7 @@ export default { var data = [] var barchartData = [] if (IDsGather.includes(indexNode)) { - data.push({value: VIFVarFormatted[indexNode], color: 'yellow'}) + data.push({value: VIFVarFormatted[indexNode], color: '#D3D3D3'}) } else { data.push({value: VIFVarFormatted[indexNode], color: 'black'}) } diff --git a/frontend/src/components/Heatmap.vue b/frontend/src/components/Heatmap.vue index 31f8fa4..052755b 100644 --- a/frontend/src/components/Heatmap.vue +++ b/frontend/src/components/Heatmap.vue @@ -368,7 +368,7 @@ export default { .style("fill", function(d) { if (d == -1) return "url(#diagonalHatch)" else if (d == -2) return "yellow" - else if (d == -3) return "white" + else if (d == -3) return "#D3D3D3" else if (d == -4) return "url(#diagonalHatch)" else return colorScale(d) }) @@ -394,7 +394,7 @@ export default { EventBus.$emit('addFeature', featuresAddRem) return 'yellow' } else if (d == -3) { - return 'white' + return '#D3D3D3' } else if (d == -4) { // svg.selectAll("rect").each(function(d){ // if (d == -4) { @@ -424,7 +424,7 @@ export default { } } else { if (d == -3) { - return 'white' + return '#D3D3D3' } else { return colorScale(d) }