-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (24 loc) · 956 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Jaimes Subroto">
<meta name="description" content="Bar chart usigng ApexCharts">
<title>ApexCharts.js App</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<a href="https://apexcharts.com/docs/" target="_blank">
<img src="https://ph-files.imgix.net/2364bb25-f440-4363-add2-55d5b1475f50" alt="ApexCharts.js Logo">
</a>
<div id="chart"></div>
<button type="button" class="btn btn-dark btn-block" id="toggle">Horizontal</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<script src="main.js"></script>
</body>
</html>