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 BasicPolarAreaCharts extends Component { constructor(props) { super(props); this.state = { series: [14, 23, 21, 17, 15, 10, 12, 17, 21], options: { chart: { type: "polarArea", }, stroke: { colors: ["#fff"], }, fill: { opacity: 0.8, }, responsive: [ { breakpoint: 480, options: { chart: { width: 200, }, legend: { position: "bottom", }, }, }, ], }, }; } render() { return ( <> Basic Polar Area Charts ); } } export default BasicPolarAreaCharts;