Reputation: 43
I'm trying to work on a D3 Diagram and it will sort of represent the menu of my website, I tried adding hyperlinks following other guides here but none of them worked, each object will have a different URL pointing to: homepage, about, contact, etc.. and will I be able to drag the objects if I add a hyperlink? meaning if I hold on click it will get dragged if I one click on the object it opens the URL
var w = 1000,
h = 800,
circleWidth = 5;
var palette = {
"lightgray": "#05386B",
"gray": "#FFFFFF",
"mediumgray": "#FFFFFF",
"blue": "#FFFFFF"
}
var colors = d3.scale.ordinal() // D3 Version 4
.range(["#05386B", "#379683" , "#5CDB95"]);
var nodes = [
{ name: "Skills"},
{ name: "HTML5", target: [0], value: 58 },
{ name: "JavaScript", target: [0, 1], value: 65 },
{ name: "Scss", target: [0, 1, 2], value: 52 },
{ name: "JAVA", target: [0, 3], value: 48 },
{ name: "IOT", target: [0,3,4], value: 40 },
{ name: "", target: [0,3,4,5], value: 36 },
{ name: "jQuery", target: [0, 1, 2], value: 52 },
{ name: "RaspberryPi", target: [0, 1, 2, 8], value: 37 },
{ name: "", target: [0,1,2], value: 20 },
{ name: "Wordpress", target: [0,1,2,3,9], value: 67 },
{ name: "Git", target: [0,1,2,3,4,5,6,7,8,10], value: 68 },
{ name: "", target: [0,1,2,7,8 ], value: 16 },
{ name: "", target: [0,1,2,7,8], value: 25 },
{ name: "Linux", target: [0,1,2,3,4,5,6,7,8,9,10,11,12], value: 45 },
{ name: "", target: [0,1,2,7,8], value: 25 },
{ name: "Adobe Suite", target: [0,1,2,12], value: 57 },
{ name: "", target: [0,9,10], value: 20 },
{ name: "", target: [0,9,10], value: 37 },
];
var links = [];
for (var i = 0; i < nodes.length; i++){
if (nodes[i].target !== undefined) {
for ( var x = 0; x < nodes[i].target.length; x++ )
links.push({
source: nodes[i],
target: nodes[nodes[i].target[x]]
});
};
};
var myChart = d3.select('body')
.append("div")
.classed("svg-container", true)
.append('svg')
.attr("preserveAspectRatio", "xMinYMin meet")
.attr("viewBox", "0 0 1000 800")
.classed("svg-content-responsive", true)
var force = d3.layout.force()
.nodes(nodes)
.links([])
.gravity(0.1)
.charge(-1000)
.size([w,h]);
var link = myChart.selectAll('line')
.data(links).enter().append('line')
.attr('stroke', palette.lightgray)
.attr('strokewidth', '1');
var node = myChart.selectAll('circle')
.data(nodes).enter()
.append('g')
.call(force.drag);
node.append('circle')
.attr('cx', function(d){return d.x; })
.attr('cy', function(d){return d.y; })
.attr('r', function(d,i){
console.log(d.value);
if ( i > 0 ) {
return circleWidth + d.value;
} else {
return circleWidth + 35;
}
})
.attr('fill', function(d,i){
if ( i > 0 ) {
return colors(i);
} else {
return '#fff';
}
})
.attr('strokewidth', function(d,i){
if ( i > 0 ) {
return '0';
} else {
return '2';
}
})
.attr('stroke', function(d,i){
if ( i > 0 ) {
return '';
} else {
return 'black';
}
});
force.on('tick', function(e){
node.attr('transform', function(d, i){
return 'translate(' + d.x + ','+ d.y + ')'
})
link
.attr('x1', function(d){ return d.source.x; })
.attr('y1', function(d){ return d.source.y; })
.attr('x2', function(d){ return d.target.x; })
.attr('y2', function(d){ return d.target.y; })
});
node.append('text')
.text(function(d){ return d.name; })
.attr('font-family', 'Raleway', 'Helvetica Neue, Helvetica')
.attr('fill', function(d, i){
console.log(d.value);
if ( i > 0 && d.value < 10 ) {
return palette.mediumgray;
} else if ( i > 0 && d.value >10 ) {
return palette.mediumgray;
} else {
return palette.blue;
}
})
.attr('text-anchor', function(d, i) {
return 'middle';
})
.attr('font-size', function(d, i){
if (i > 0) {
return '.8em';
} else {
return '.9em';
}
})
force.start();
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
Upvotes: 1
Views: 246
Reputation: 38171
You can add an a
element to the g
representing each node:
var node = myChart.selectAll('circle')
.data(nodes).enter()
.append('g')
.call(force.drag)
.append("a")
.attr("href",function(d) {
// eg:
return "myURL/"+d.name
});
Then just continue to append text and circles to node
which is now a parent a
element that in this case largely functions just like the g
(you can apply a transform to it, so you don't need to modify the tick function):
var w = 1000,
h = 800,
circleWidth = 5;
var palette = {
"lightgray": "#05386B",
"gray": "#FFFFFF",
"mediumgray": "#FFFFFF",
"blue": "#FFFFFF"
}
var colors = d3.scale.ordinal() // D3 Version 4
.range(["#05386B", "#379683" , "#5CDB95"]);
var nodes = [
{ name: "Skills"},
{ name: "HTML5", target: [0], value: 58 },
{ name: "JavaScript", target: [0, 1], value: 65 },
{ name: "Scss", target: [0, 1, 2], value: 52 },
{ name: "JAVA", target: [0, 3], value: 48 },
{ name: "IOT", target: [0,3,4], value: 40 },
{ name: "", target: [0,3,4,5], value: 36 },
{ name: "jQuery", target: [0, 1, 2], value: 52 },
{ name: "RaspberryPi", target: [0, 1, 2, 8], value: 37 },
{ name: "", target: [0,1,2], value: 20 },
{ name: "Wordpress", target: [0,1,2,3,9], value: 67 },
{ name: "Git", target: [0,1,2,3,4,5,6,7,8,10], value: 68 },
{ name: "", target: [0,1,2,7,8 ], value: 16 },
{ name: "", target: [0,1,2,7,8], value: 25 },
{ name: "Linux", target: [0,1,2,3,4,5,6,7,8,9,10,11,12], value: 45 },
{ name: "", target: [0,1,2,7,8], value: 25 },
{ name: "Adobe Suite", target: [0,1,2,12], value: 57 },
{ name: "", target: [0,9,10], value: 20 },
{ name: "", target: [0,9,10], value: 37 },
];
var links = [];
for (var i = 0; i < nodes.length; i++){
if (nodes[i].target !== undefined) {
for ( var x = 0; x < nodes[i].target.length; x++ )
links.push({
source: nodes[i],
target: nodes[nodes[i].target[x]]
});
};
};
var myChart = d3.select('body')
.append("div")
.classed("svg-container", true)
.append('svg')
.attr("preserveAspectRatio", "xMinYMin meet")
.attr("viewBox", "0 0 1000 800")
.classed("svg-content-responsive", true)
var force = d3.layout.force()
.nodes(nodes)
.links([])
.gravity(0.1)
.charge(-1000)
.size([w,h]);
var link = myChart.selectAll('line')
.data(links).enter().append('line')
.attr('stroke', palette.lightgray)
.attr('strokewidth', '1');
var node = myChart.selectAll('circle')
.data(nodes).enter()
.append('g')
.call(force.drag)
.append("a")
.attr("href","https://google.com");
node.append('circle')
.attr('cx', function(d){return d.x; })
.attr('cy', function(d){return d.y; })
.attr('r', function(d,i){
if ( i > 0 ) {
return circleWidth + d.value;
} else {
return circleWidth + 35;
}
})
.attr('fill', function(d,i){
if ( i > 0 ) {
return colors(i);
} else {
return '#fff';
}
})
.attr('strokewidth', function(d,i){
if ( i > 0 ) {
return '0';
} else {
return '2';
}
})
.attr('stroke', function(d,i){
if ( i > 0 ) {
return '';
} else {
return 'black';
}
})
force.on('tick', function(e){
node.attr('transform', function(d, i){
return 'translate(' + d.x + ','+ d.y + ')'
})
link
.attr('x1', function(d){ return d.source.x; })
.attr('y1', function(d){ return d.source.y; })
.attr('x2', function(d){ return d.target.x; })
.attr('y2', function(d){ return d.target.y; })
});
node.append('text')
.text(function(d){ return d.name; })
.attr('font-family', 'Raleway', 'Helvetica Neue, Helvetica')
.attr('fill', function(d, i){
if ( i > 0 && d.value < 10 ) {
return palette.mediumgray;
} else if ( i > 0 && d.value >10 ) {
return palette.mediumgray;
} else {
return palette.blue;
}
})
.attr('text-anchor', function(d, i) {
return 'middle';
})
.attr('font-size', function(d, i){
if (i > 0) {
return '.8em';
} else {
return '.9em';
}
})
force.start();
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
A short enough drag might trigger a click and open the link - in d3v4+ I believe you have more control over that dividing line, though I don't recall how d3v3 treated this (after all we're up to v7 now).
You could even do away with the g
altogether and enter a
elements instead - but I've kept my intervention at a minimum above
Upvotes: 1