apexcharts / vue3-apexcharts

📊 Vue-3 component for ApexCharts
MIT License
314 stars 35 forks source link

xaxis.lables.style.cssClass not work in vue3 when chart type is radar #107

Open yp05327 opened 5 months ago

yp05327 commented 5 months ago

Description

Steps to Reproduce

  1. set chart type to 'radar'
  2. add xaxis like
    xaxis: {
    categories: [your data],
    labels: {
    show: true,
    style: {
      cssClass: 'custom-class',
    },
    },
    },

Expected Behavior

'custom-class' should be set in radar chart

Actual Behavior

Screenshots

Reproduction Link

https://codesandbox.io/s/vue-basic-example-forked-9rq22g?file=/src/components/Chart.component.vue