parent 1aa37efe7b
commit b258259d70
  1. 4
      frontend/src/components/FeatureSpaceDetail.vue
  2. 6
      frontend/src/components/Heatmap.vue

@ -613,7 +613,7 @@ export default {
if (groupsColor.getAttribute('fill') == "black") { if (groupsColor.getAttribute('fill') == "black") {
if (selectionCounter < 3) { if (selectionCounter < 3) {
// add here the different states of comparison! (=2 and =3) // add here the different states of comparison! (=2 and =3)
groupsColor.setAttribute('fill', 'yellow') groupsColor.setAttribute('fill', '#D3D3D3')
selectionCounter = selectionCounter + 1 selectionCounter = selectionCounter + 1
EventBus.$emit('Counter', selectionCounter) EventBus.$emit('Counter', selectionCounter)
IDsGather.push(idLocal); IDsGather.push(idLocal);
@ -815,7 +815,7 @@ export default {
var data = [] var data = []
var barchartData = [] var barchartData = []
if (IDsGather.includes(indexNode)) { if (IDsGather.includes(indexNode)) {
data.push({value: VIFVarFormatted[indexNode], color: 'yellow'}) data.push({value: VIFVarFormatted[indexNode], color: '#D3D3D3'})
} else { } else {
data.push({value: VIFVarFormatted[indexNode], color: 'black'}) data.push({value: VIFVarFormatted[indexNode], color: 'black'})
} }

@ -368,7 +368,7 @@ export default {
.style("fill", function(d) { .style("fill", function(d) {
if (d == -1) return "url(#diagonalHatch)" if (d == -1) return "url(#diagonalHatch)"
else if (d == -2) return "yellow" 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 if (d == -4) return "url(#diagonalHatch)"
else return colorScale(d) else return colorScale(d)
}) })
@ -394,7 +394,7 @@ export default {
EventBus.$emit('addFeature', featuresAddRem) EventBus.$emit('addFeature', featuresAddRem)
return 'yellow' return 'yellow'
} else if (d == -3) { } else if (d == -3) {
return 'white' return '#D3D3D3'
} else if (d == -4) { } else if (d == -4) {
// svg.selectAll("rect").each(function(d){ // svg.selectAll("rect").each(function(d){
// if (d == -4) { // if (d == -4) {
@ -424,7 +424,7 @@ export default {
} }
} else { } else {
if (d == -3) { if (d == -3) {
return 'white' return '#D3D3D3'
} else { } else {
return colorScale(d) return colorScale(d)
} }

Loading…
Cancel
Save