Copy yourLibrary.js
to the src/lib/yourLibrary
directory. Include yourLibrary.js
in index.html
as shown below.
<script type="text/javascript" src="lib/yourLibrary.js"></script>
In a later stage, we will be using the library D3.js
to visualize data in the Gauge dizmo.
Copy d3.js
to the src/lib/d3
directory.
Include d3.js
in index.html
as shown below.
<html>
<head>
...
<script type="text/javascript" src="lib/d3.js"></script>
...
<!-- Your own stylesheet (do not remove!)-->
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
...