xxxxxxxxxx
1
<div class="container my-5">
2
3
<!--Section: Content-->
4
<section>
5
6
<div class="card">
7
<div class="card-body px-0 pb-0">
8
9
<h5 class="text-center font-weight-bold mb-4">Browser Usage</h5>
10
11
<hr>
12
13
<!--Grid row-->
14
<div class="row mt-3 pt-3">
15
16
<!--Grid column-->
17
<div class="col-md-6 mb-4 mb-md-0 mx-auto">
18
19
<canvas id="doughnutChart"></canvas>
20
21
</div>
22
<!--Grid column-->
23
24
<!--Grid column-->
25
<div class="col-12 pt-4 mt-2 mb-4 mb-md-0 mx-auto">
26
27
<div class="list-group">
28
<a href="#!" class="list-group-item list-group-item-action rounded-0 border-left-0 border-right-0 d-flex justify-content-between align-items-center">United States of America
29
<span class="text-danger"><i class="fas fa-chevron-down"></i> 12%</span>
30
</a>
31
<a href="#!" class="list-group-item list-group-item-action rounded-0 border-left-0 border-right-0 d-flex justify-content-between align-items-center">India
32
<span class="text-success"><i class="fas fa-chevron-up"></i> 4%</span>
33
</a>
34
<a href="#!" class="list-group-item list-group-item-action border-bottom-0 border-left-0 border-right-0 rounded-bottom-left rounded-bottom-right d-flex justify-content-between align-items-center">China
35
<span class="text-warning"><i class="fas fa-chevron-left"></i> 0%</span>
36
</a>
37
</div>
38
39
</div>
40
<!--Grid column-->
41
42
</div>
43
<!--Grid row-->
44
45
</div>
46
</div>
47
48
</section>
49
<!--Section: Content-->
50
51
</div>
1
1
xxxxxxxxxx
1
// Doughnut
2
var ctxD = document.getElementById("doughnutChart").getContext('2d');
3
var myLineChart = new Chart(ctxD, {
4
type: 'doughnut',
5
data: {
6
labels: ["Chrome", "Opera", "Firefox", "Navigator", "Safari"],
7
datasets: [{
8
data: [300, 50, 100, 40, 120],
9
backgroundColor: ["#F7464A", "#46BFBD", "#FDB45C", "#949FB1", "#4D5360"],
10
hoverBackgroundColor: ["#FF5A5E", "#5AD3D1", "#FFC870", "#A8B3C5", "#616774"]
11
}]
12
},
13
options: {
14
responsive: true,
15
legend: {
16
position: 'right',
17
align: 'center',
18
labels: {
19
padding: 20
20
}
21
}
22
}
23
});
Console errors: 0