-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecharts_sample.html
43 lines (42 loc) · 1.21 KB
/
echarts_sample.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
43
<html ng-app="myApp">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="echarts.js"></script>
<script src="echarts_sample.js"></script>
<body ng-controller="getAppController">
<div class="row">
<div class="col-xs-12">
<div>
<h4 class="text-center">
<b>Line Graph</b>
</h4>
<div id="lineGraph" style="width: 100%; height: 35vh; min-height: 350px;"></div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<div>
<h4 class="text-center">
<b>Pie Graph1</b>
</h4>
<div id="pieGraph1" style="width: 100%; height: 35vh; min-height: 350px;"></div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<div>
<h4 class="text-center">
<b>Pie Graph2</b>
</h4>
<div id="pieGraph2" style="width: 100%; height: 35vh; min-height: 350px;"></div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-lg-4">
<div>
<h4 class="text-center">
<b>Pie Graph3</b>
</h4>
<div id="pieGraph3" style="width: 100%; height: 35vh; min-height: 350px;"></div>
</div>
</div>
</div>
</body>
</html>