Skip to content
Snippets Groups Projects
Commit 37d667cb authored by Stahl, Merle's avatar Stahl, Merle
Browse files

fix_nodes

parent 6d338c38
No related branches found
No related tags found
2 merge requests!10Output,!9Main
......@@ -13,6 +13,7 @@ width = svg.attr("width"),
height = svg.attr("height");
var textinfo='';
var textabstract='';
/**
* creates node object and associated attributes
*/
......@@ -112,7 +113,6 @@ var simulation = d3.forceSimulation()
.force("yscale", d3.forceY().strength(1).y(function(d) {return yscale(d.group)}))
.alpha(0.1);
/**
* creates group element
*/
......@@ -317,6 +317,7 @@ function clickNode(node) {
* removes the markings of the circles and their links
*/
function clickRect() {
fix_nodes(node);
d3.selectAll(".circle").style("stroke", "none")
d3.selectAll(".link")
.style("stroke", "#999")
......@@ -360,8 +361,6 @@ function isLinkForNode(node, link){
return link.source.index == node.index || link.target.index == node.index;
}
/**
* outputs node info to textbox
* @param {object} node - data of current node
......@@ -375,7 +374,6 @@ function textfunc(node){
document.getElementById('textbox').innerHTML = textinfo;
}
function highlightbutton(btn){
resetbuttonhighlight();
document.getElementById(btn).style.background="#DCDCDC";
......@@ -419,6 +417,7 @@ function dragstarted(node) {
simulation.alphaTarget(0.3).restart()
node.fx = node.x;
node.fy = node.y;
fix_nodes(node);
}
/**
......
......@@ -27,6 +27,19 @@
button.save{
margin-left: 330px;
}
div.legendbox {
width: 270px;
height: 170px;
padding: 10px;
/*border: 1px solid #999;*/
position: absolute;
top: 10px;
left: 968px;
display: inline-block;
margin: 0;
}
button.abstract {
width:146px;
position: absolute;
......@@ -35,6 +48,7 @@
border-radius: 0;
border: 1px solid #909090;
}
button.overview {
width:147px;
position: absolute;
......@@ -45,18 +59,6 @@
border: 1px solid #909090;
}
div.legendbox {
width:270px;
height:170px;
padding: 10px;
/*border: 1px solid #999;*/
position: absolute;
top: 10px;
left: 968px;
display: inline-block;
margin: 0;
}
div.textbox {
width: 270px;
min-height: 200px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment