apexcharts / apexcharts.js

📊 Interactive JavaScript Charts built on SVG
https://apexcharts.com
MIT License
14.18k stars 1.29k forks source link

Donut chart labels not hiding #3643

Closed dev348 closed 1 year ago

dev348 commented 1 year ago

Description

this.chartOptions = { series: [24, 55], chart: { type: 'donut',

  },
  colors: ['#E99481', '#76BFAF'],
  dataLabels: {
    enabled: false,
    name: {
      show: false
   },
   value:{
    show:false
   },
   lables:{show:false}
  },

  plotOptions: {
    pie: {
      donut: {
        size: '80%',
        background: 'transparent',
      },
    },
  },
  responsive: [
    {
      breakpoint: 480,
      options: {
        chart: {
          width: 200,
        },
        legend: {
          position: 'bottom',
        },
      },
    },
  ],
};

}

am trying to hide the side label but am not able hide that

Screenshots

image

dev348 commented 1 year ago

i don't have solutions for this problem