Blame view
public/assets/js/charts-pie.js
884 Bytes
02a1ed535 Первый коммит Rek... |
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 |
/** * For usage, visit Chart.js docs https://www.chartjs.org/docs/latest/ */ const pieConfig = { type: 'doughnut', data: { datasets: [ { data: [33, 33, 33], /** * These colors come from Tailwind CSS palette * https://tailwindcss.com/docs/customizing-colors/#default-color-palette */ backgroundColor: ['#0694a2', '#1c64f2', '#7e3af2'], label: 'Dataset 1', }, ], labels: ['Shoes', 'Shirts', 'Bags'], }, options: { responsive: true, cutoutPercentage: 80, /** * Default legends are ugly and impossible to style. * See examples in charts.html to add your own legends * */ legend: { display: false, }, }, } // change this to the id of your chart element in HMTL const pieCtx = document.getElementById('pie') window.myPie = new Chart(pieCtx, pieConfig) |