Created
June 20, 2014 21:11
-
-
Save arubyist/d09b6ad822e2cc5798f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> | |
| <title>My project</title> | |
| <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
| </head> | |
| <body> | |
| <p>Fa</p> | |
| <p>La</p> | |
| <p>La</p> | |
| <p>La</p> | |
| <script> | |
| var fs=["10px", "20px", "30px"]; | |
| var colors = ["darkmagneta", "teal", "rosybrown", "midnightblue"]; | |
| d3.selectAll("p").data(colors).style("font-color", function(d) {return d;}); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment