'Apexcharts RadialBar height is wrong

Today I tried Apexchart RadialBar and other charts, some height settings are inaccurate, and it's worse in RadialBar.

This is an example of the official website of the arch https://codepen.io/junedchhipa/pen/eQmmbO

You can see that the set height 350 does not work, it is completely inaccurate, is there a way to set the specified height? e.g. 250 height

var options = {
  chart: {
      height: 350,
      type: 'radialBar',
  },
  series: [70],
  labels: ['Progress'],
}

var chart = new ApexCharts(document.querySelector("#chart"), options);

chart.render();


Sources

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

Source: Stack Overflow

Solution Source