'(ApexCharts) How can I make the pie chart the same size?

My Problem : Chart size is fixed including legends.

I want to fixed pie chart size except legends. How can I make the pie chart the same size?

This is my code. Help me plz

var options = {
          series: [25, 15, 44],
          chart: {
            type: 'pie', 
            **width: '300px'**
        },
        labels: ["Monday", "Tuesday", "Wednesday"],
        theme: {
          monochrome: {
            enabled: true,
            color: '#f38200',
            shadeIntensity: 0.9
          }
        },
        plotOptions: {
          pie: {
            size : "200px"
          }
        },
        stroke: {
          show: false
        },
        dataLabels: {
          enabled: false
        },
        legend: {
            position: 'bottom',
            horizontalAlign: 'left',
            markers: {
                width: 9, height: 9
            },
            itemMargin: {
                horizontal: 20, vertical: 0
            },
            formatter: function(seriesName, opts) {
              ~~~~~~~
              return legend;
            }
          }
        };

IMG - This is my problem



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source