How to change ApexCharts label size, font and position in the pie chart
Advertisements I’m using ApexCharts.js to add pie chart component on my page. And I need to change the label size, font and position to bottom. <script src=”https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js”></script> <script src=”https://cdn.jsdelivr.net/npm/eligrey-classlist-js-polyfill@1.2.20171210/classList.min.js”></script> <script src=”https://cdn.jsdelivr.net/npm/findindex_polyfill_mdn”></script> <script src=”https://cdn.jsdelivr.net/npm/apexcharts”></script> <body> <div id=”pieChart”></div> <script> var options = { series: [10, 20, 30, 50], chart: { height: 480, type: ‘pie’, }, labels: [“series_1”,… Read More How to change ApexCharts label size, font and position in the pie chart