lavkach3
1document.addEventListener("DOMContentLoaded", function () {2// Simple Pie Chart -------> PIE CHART3var options_simple = {4series: [44, 55, 13, 43, 22],5chart: {6fontFamily: "inherit",7width: 380,8type: "pie",9},10colors: [11"var(--bs-primary)",12"var(--bs-secondary)",13"#ffae1f",14"#fa896b",15"#39b69a",16],17labels: ["Team A", "Team B", "Team C", "Team D", "Team E"],18responsive: [19{20breakpoint: 480,21options: {22chart: {23width: 200,24},25legend: {26position: "bottom",27},28},29},30],31legend: {32labels: {33colors: "#a1aab2",34},35},36};37
38var chart_pie_simple = new ApexCharts(39document.querySelector("#chart-pie-simple"),40options_simple
41);42chart_pie_simple.render();43
44// Donut Pie Chart -------> PIE CHART45var options_donut = {46series: [44, 55, 41, 17, 15],47chart: {48fontFamily: "inherit",49type: "donut",50width: 385,51},52colors: [53"var(--bs-primary)",54"var(--bs-secondary)",55"#ffae1f",56"#fa896b",57"#39b69a",58],59responsive: [60{61breakpoint: 480,62options: {63chart: {64width: 200,65},66legend: {67position: "bottom",68},69},70},71],72legend: {73labels: {74colors: "#a1aab2",75},76},77};78
79var chart_pie_donut = new ApexCharts(80document.querySelector("#chart-pie-donut"),81options_donut
82);83chart_pie_donut.render();84
85// Monochrome Pie Chart -------> PIE CHART86var options_monochrome = {87series: [25, 15, 44, 55, 41, 17],88chart: {89fontFamily: "inherit",90width: "350",91type: "pie",92},93labels: [94"Monday",95"Tuesday",96"Wednesday",97"Thursday",98"Friday",99"Saturday",100],101theme: {102monochrome: {103enabled: true,104},105},106plotOptions: {107pie: {108color: ["#3dd9eb"],109dataLabels: {110offset: -5,111},112},113},114dataLabels: {115formatter(val, opts) {116const name = opts.w.globals.labels[opts.seriesIndex];117return [name, val.toFixed(1) + "%"];118},119},120legend: {121show: false,122},123};124
125var chart_pie_monochrome = new ApexCharts(126document.querySelector("#chart-pie-monochrome"),127options_monochrome
128);129chart_pie_monochrome.render();130});131