[Vuejs]-How to change fontSize for dataLabels?

3👍

You can find a pretty good summary of your options here on this page: https://apexcharts.com/docs/options/datalabels/

style: {
      fontSize: '14px',
      fontFamily: 'Helvetica, Arial, sans-serif',
      fontWeight: 'bold',
      colors: undefined
  },
👤Symon

0👍

You can simply provide styling in CSS class.

  .apexcharts-pie-label{
    font-size:25px;
    }  

Leave a comment