In which I attempt the first two D3 tutorials.
First up, let's make a barchart with div
s.
Easy enough. Now for SVG (using the same data as above).
So that worked. One thing I noticed: the bars came out slightly blurry (maybe anti-aliased) until I added shape-rendering: crispEdges;
to my CSS. Here's my final javascript: