| author | Nicolas Sauret <nicolas.sauret@iri.centrepompidou.fr> |
| Wed, 16 Apr 2014 14:59:23 +0200 | |
| changeset 50 | f68ecaf5265e |
| parent 47 | c0b4a8b5a012 |
| permissions | -rw-r--r-- |
<!DOCTYPE html> <html> <head> <title>Test - selectAll > enter > append</title> <script type="text/javascript" src="../../d3.js"></script> </head> <body> <span></span> <script type="text/javascript"> d3.select("body") .selectAll("span") .data(["Test", "passed."]) .text(function(d) { return d; }) .enter().append("span") .text(function(d) { return d; }); </script> </body> </html>