-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurveyresult.html
66 lines (57 loc) · 2.35 KB
/
surveyresult.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Survey Result</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
<link rel="stylesheet" href="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-beta.1.css" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="js/arctoplabs.js"></script>
</head>
<body>
<div id="s_testimonial1" class="py-5 text-center pi-draggable bg-light" draggable="true">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Survey Result </h1>
<p class="lead">Survey Data solution build on top of ArcTop Labs #DataSolution #MasterDataNode EcoSystem</p>
</div>
</div>
<div class="row">
<div class="col-md-6 p-6">
<canvas id="myChart" width="100" height="60"></canvas>
</div>
<div class="col-md-6 p-6">
<canvas id="chart-area" />
</div>
</div>
<div class="row">
<div class="col-md-6 p-6">
<h3>Top 5 Positive Review </h3>
<div class="row" id="positive">
</div>
</div>
<div class="col-md-6 p-6">
<h3>Top 5 Negative Review </h3>
<div class="row" id="negative"></div>
</div>
</div>
</div>
</div>
<div></div>
<script>
html5survey.voteResult();
html5survey.reviewPositive();
html5survey.reviewNegative();
// setTimeout(function () {
// window.location.reload(1);
// }, 10000);
</script>
</body>
</html>