import React from "react"; import { Box } from "@mui/material"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); import InputLabel from "@mui/material/InputLabel"; import MenuItem from "@mui/material/MenuItem"; import FormControl from "@mui/material/FormControl"; import Select from "@mui/material/Select"; const RevenuStatus = () => { // Select Form const [select, setSelect] = React.useState(""); const handleChange = (event) => { setSelect(event.target.value); }; // Chart const series = [ { name: "income", data: [50, 48, 47, 48, 50, 48, 50, 48, 50, 48, 48], }, ]; const options = { chart: { toolbar: { show: false, }, }, dataLabels: { enabled: false, }, stroke: { curve: "smooth", }, colors: ["#757FEF"], xaxis: { categories: [ "1 Jan", "2 Jan", "3 Jan", "4 Jan", "5 Jan", "6 Jan", "7 Jan", "8 Jan", "9 Jan", "10 Jan", "11 Jan", "12 Jan", ], labels: { style: { colors: "#A9A9C8", fontSize: "12px", }, }, }, grid: { show: true, borderColor: "#f6f6f7", }, tooltip: { x: { format: "dd/MM/yy HH:mm", }, y: { formatter: function (val) { return "$" + val + "k"; }, }, }, }; return ( <> Revenu Status Select ); }; export default RevenuStatus;