import React, { Component } from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); import styles from "@/components/Dashboard/Analytics/VisitorsAge/VisitorsAge.module.css"; class VisitorsAge extends Component { constructor(props) { super(props); this.state = { series: [40], options: { plotOptions: { radialBar: { hollow: { size: "50%", }, track: { background: "rgba(247, 101, 163, 0.5)", }, dataLabels: { name: { show: false, }, value: { offsetY: 4, color: "#F765A3", fontSize: "16px", fontWeight: "500", }, }, }, }, fill: { colors: ["#F765A3"], }, }, }; } render() { return ( <> Visitors Age <>

Under 30

16,868

32%

Over 30

31,868

68%

); } } export default VisitorsAge;