Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<head>
<title>D3 Chart</title>
<meta charset="utf-8">
<link href="inc/style.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="inc/d3tip.js"></script>
</head>
<body>
<form id="form" enctype="multipart/form-data">
<input id="file" type="file" name="file" />
<button id="submit" type="submit">Upload File</button>
</form>
<div id="chart"></div>
<button id="export">Export selected data</button>
<button id="clear">Clear selected data</button>
</body>
<script src="inc/script.js"></script>
<html>