28 lines
477 B
JavaScript
28 lines
477 B
JavaScript
var options = {
|
|
chart: {
|
|
width: 400,
|
|
type: 'pie',
|
|
},
|
|
labels: ['Team A', 'Team B', 'Team C', 'Team D', 'Team E'],
|
|
series: [20, 20, 20, 20, 20],
|
|
responsive: [{
|
|
breakpoint: 480,
|
|
options: {
|
|
chart: {
|
|
width: 200
|
|
},
|
|
legend: {
|
|
position: 'bottom'
|
|
}
|
|
}
|
|
}],
|
|
stroke: {
|
|
width: 0,
|
|
},
|
|
colors: ['#005f1d', '#007524', '#01902d', '#00bb3a', '#5bca7d'],
|
|
}
|
|
var chart = new ApexCharts(
|
|
document.querySelector("#basic-pie-graph"),
|
|
options
|
|
);
|
|
chart.render(); |