-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchartjs.html
More file actions
43 lines (28 loc) · 899 Bytes
/
chartjs.html
File metadata and controls
43 lines (28 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<head>
<title>Chart JS</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link type="text/css" rel="stylesheet" media="all" href="chartjs/chartjs.css" />
<script type="text/javascript" src="chartjs/chartjs.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var table1 = new tablerone({
id : "table1-container",
// data : data,
url : 'tablerone/js/tablerone-demo.json',
filter : {enabled : true},
sort : {enabled : true},
pages : {enabled : true}
});
var debug = true;
});
</script>
</head>
<body>
<div class="row-fluid">
<div class="span12 span12-padding">
<div id="chart-page-container"></div>
</div>
</div>
</body>
</html>