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 (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'})
}

@ -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)
}

Loading…
Cancel
Save