import React, { Component } from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); class BasicRadialBarCharts extends Component { constructor(props) { super(props); this.state = { series: [70], options: { chart: { height: 350, type: "radialBar", }, plotOptions: { radialBar: { hollow: { size: "70%", }, }, }, labels: ["Cricket"], }, }; } render() { return ( <> Basic Radial Bar Charts ); } } export default BasicRadialBarCharts;