-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (29 loc) · 848 Bytes
/
index.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
</head>
<body ng-app='nvd3TestApp'>
<div ng-controller="GraphController">
<nvd3-line-chart
data="exampleData"
showXAxis="true"
showYAxis="true"
tooltips="true"
interactive="true"
xAxisTickFormat="xAxisTickFormat_Time_Format()"
yAxisTickFormat="yAxisFormatFunction()"
height="600"
margin="{left:100,top:50,bottom:50,right:50}"
showLegend="true"
useInteractiveGuideline="true"
xAxisLabel="Time"
yAxisLabel="Price (£)"
>
</nvd3-line-chart>
</div>
<script src="build/js/lib.js"></script>
<script src="build/js/concatenated-app.js"></script>
<link rel="stylesheet" href="build/css/concat.css"/>
</body>
</html>