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