javascript - How to add a nice legend to a d3 pie chart -
i have pie chart working ok add nice legend kind of (made in mspaint) but can't quite make work... here pie chart code (without legend part) : <!doctype html> <html> <head> <script data-require="d3@3.5.3" data-semver="3.5.3" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js"></script> </head> <body> <script> var newdata = [{ count: 1, emote: "onetwothree" }, { count: 1, emote: "fourfivesix" }, { count: 1, emote: "seveneightnine" }, { count: 15, emote: "teneleventwelve" }, ] // define size & radius of donut pie chart var width = 450, height = 800, radius = math.min(width, height) / 2; // define arc colours var colour = d3.scale.category20(); // define arc ranges var arcte...