-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiframe-content-4.html
38 lines (36 loc) · 1002 Bytes
/
iframe-content-4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<title>Pie Chart Example</title>
</head>
<body>
<div id="chart"></div>
<script>
var options = {
series: [45, 55], // You can adjust the values for ERP and DMS
labels: ['ERP', 'DMS'],
chart: {
type: 'pie',
},
responsive: [
{
breakpoint: 480,
options: {
chart: {
height: 200
},
legend: {
position: 'bottom'
}
}
}
]
};
var chart = new ApexCharts(document.querySelector("#chart"), options);
chart.render();
</script>
</body>
</html>