1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <title>D3.js サンプル</title> <link rel= "stylesheet" href= "css/main.css" > </head> <body> <h1>D3.jsサンプル</h1> <div id= "myText" >ビジュアライゼーション</div> <script src= "js/sample.js" ></script> </body> </html> |
1 2 3 4 5 6 7 | d3.select( "#myText" ) .style({ "background-color" : "orange" , "width" : "200px" , "height" : "80px" , "font-size" : "16pt" }) |