D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ozcanka
Full window
Github gist
gene visualizer
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } </style> </head> <body> <script> var svg = d3.select("body").append("svg") .attr("width", 1000) .attr("height", 1000) d3.json("genes.json", function (error, gene) { console.log(gene) d3.select("svg").selectAll("rect") .data(gene) .enter() .append("rect") .attr("x", function(d){return d.start}) .attr("y", function(d) {if (d.orientation == "forward") {return 40} else {return 90} }) .attr("width", function(d) {return d.end-d.start}) .attr("height", 50) .attr("fill", function(d) {if (d.orientation == "forward") {return "blue"} else {return "red"} }) .style("stroke", "black") .style("stroke-width", 5) }) d3.json("genes.json", function (error, gene) { console.log(gene) d3.select("svg").selectAll("text") .data(gene) .enter() .append("text") .text(function(d) {return d.name}) .attr("x", function(d){return d.start +5}) .attr("y", function(d) {if (d.orientation == "forward") {return "75"} else {return "125"} }) .attr("fill","white") .attr("font-size",18) }); </script> </body>
https://d3js.org/d3.v4.min.js