import React, { Component } from "react"; // import ReactApexChart from "react-apexcharts"; // import ReactApexChart from "apexcharts"; import Chart from "react-apexcharts"; class SemiDonut extends Component { constructor(props) { super(props); this.state = { options: { chart: { type: "donut", }, plotOptions: { pie: { startAngle: -90, endAngle: 90, offsetY: 10, }, }, grid: { padding: { bottom: -80, }, }, responsive: [ { breakpoint: 480, options: { chart: { width: 200, }, legend: { position: "bottom", }, }, }, ], }, series: [44, 44, 44, 44, 44], }; } render() { return ( ); } } export default SemiDonut;