-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
executable file
·25 lines (23 loc) · 1.16 KB
/
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
<!DOCTYPE html>
<html ng-app="testApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src='angular.js'></script>
<script type="text/javascript" src='jquery.min.js'></script>
<script type="text/javascript" src="highcharts.js"></script>
<script src='app.js'></script>
</head>
<body ng-controller="ctrl">
Please upload a CSV file here <input type="file" file-reader="fileContent" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel"/>
<span ng-if="links">Show Line chart for </span><button ng-repeat="link in links" ng-click="showSeriesChart(link)">{{link}}</button>
<line-chart options="chartObj.chartOptions" ng-if="showChart">Placeholder for generic chart </line-chart>
<div>
<pre> Note: Plese install following dependencies:
1. Node JS
2. My SQL Database
And update the app-server.js file with your username and password of mysql database. Run this file <b>test_series_info.sql</b> script inside my sql editor.
</pre>
</div>
</body>
</html>