Spaces:
Running
Running
Update modular_graph_and_candidates.py
Browse files
modular_graph_and_candidates.py
CHANGED
|
@@ -740,7 +740,7 @@ node.filter(d => d.cls !== 'base').append('circle').attr('r', d => 20*d.sz);
|
|
| 740 |
node.append('text')
|
| 741 |
.attr('class','node-label')
|
| 742 |
.attr('dy','-2.4em')
|
| 743 |
-
.style('font-size', d => d.cls === 'base' ? '
|
| 744 |
.style('font-weight', d => d.cls === 'base' ? 'bold' : 'normal')
|
| 745 |
.text(d => d.id);
|
| 746 |
|
|
|
|
| 740 |
node.append('text')
|
| 741 |
.attr('class','node-label')
|
| 742 |
.attr('dy','-2.4em')
|
| 743 |
+
.style('font-size', d => d.cls === 'base' ? '70px' : '40px')
|
| 744 |
.style('font-weight', d => d.cls === 'base' ? 'bold' : 'normal')
|
| 745 |
.text(d => d.id);
|
| 746 |
|