To get the main D3.js JavaScript file go to the D3.js Website. Download the latest version d3.v2.min.js. Downloaded file save in to same folder and include that file into the HTML page.
Test D3.js script file
To test our D3.js setup we open the inspect element tool kit. In the Element tab of the Webkit Inspector, we open all of the elements so that we can see the whole HTML structure. We then hover over the d3.vs.min.js src.
When we click on the link, it takes us to the sources tab.
If the last step did not work it mean D3.js is not include properly.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="d3.v2.min.js"></script>
</head>
<body>
<p>Hello!</p>
</body>
</html>
Test D3.js script file
To test our D3.js setup we open the inspect element tool kit. In the Element tab of the Webkit Inspector, we open all of the elements so that we can see the whole HTML structure. We then hover over the d3.vs.min.js src.
When we click on the link, it takes us to the sources tab.
If the last step did not work it mean D3.js is not include properly.
No comments