D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
mbostock
Full window
Github gist
Poor Anti-Aliasing in SVG, #1
<!DOCTYPE html> <meta charset="utf-8"> <style> rect { fill: steelblue; } text { font: 300 48px "Helvetica Neue"; } </style> <body> <script src="//d3js.org/d3.v3.min.js"></script> <script> var svg = d3.select("body").append("svg") .attr("width", 960) .attr("height", 500); svg.append("text") .attr("x", 480) .attr("y", 250) .attr("text-anchor", "middle") .attr("dy", ".35em") .text("TEST FAILED"); svg.selectAll("rect") .data(d3.range(1920)) .enter().append("rect") .attr("x", function(d) { return d / 2; }) .attr("width", .5) .attr("height", 500); </script>
https://d3js.org/d3.v3.min.js