import React from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import Menu from "@mui/material/Menu"; import MenuItem from "@mui/material/MenuItem"; import IconButton from "@mui/material/IconButton"; import MoreHorizIcon from "@mui/icons-material/MoreHoriz"; import ArrowDownwardIcon from "@mui/icons-material/ArrowDownward"; import ArrowUpwardIcon from "@mui/icons-material/ArrowUpward"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); const CompletedTasks = () => { const [anchorEl, setAnchorEl] = React.useState(null); const open = Boolean(anchorEl); const handleClick = (event) => { setAnchorEl(event.currentTarget); }; const handleClose = () => { setAnchorEl(null); }; // Chart const series = [ { name: "Task", data: [21, 22, 10, 28, 16, 21, 13, 30], }, ]; const options = { chart: { toolbar: { show: false, }, events: { click: function (chart, w, e) { // console.log(chart, w, e) }, }, }, colors: ["#757FEF"], plotOptions: { bar: { borderRadius: 5, borderRadiusApplication: 'end', horizontal: false, columnWidth: "20%" }, }, dataLabels: { enabled: false, }, legend: { offsetY: 0, show: false, fontSize: "14px", position: "bottom", horizontalAlign: "center", labels: { colors: '#5B5B98' } }, xaxis: { categories: [ ["1 Jan"], ["2 Jan"], ["3 Jan"], ["4 Jan"], ["5 Jan"], ["6 Jan"], ["7 Jan"], ["8 Jan"], ], axisBorder: { show: false }, axisTicks: { show: false }, labels: { show: false, style: { colors: "#a9a9c8", fontSize: "14px" } } }, yaxis: { show: false, labels: { style: { colors: "#a9a9c8", fontSize: "14px" }, }, axisBorder: { show: false } }, grid: { show: false, strokeDashArray: 5, borderColor: "#EDEFF5" }, fill: { opacity: 1, }, }; return ( <> Completed Tasks Last 15 Days Last Month Last Year Target {" "} 20k Last Week {" "} 5.50k Last Month {" "} 50k ); }; export default CompletedTasks;