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 Chart from "chart.js/auto"; import { Bar } from "react-chartjs-2"; const options = { indexAxis: "y", elements: { bar: { // borderWidth: 1, }, }, responsive: true, plugins: { legend: { position: "bottom", }, }, }; const labels = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", ]; const data = { labels, datasets: [ { label: "Achivement", data: [90, 80, 85, 70, 60, 50, 40, 60,], borderColor: "#F765A3", backgroundColor: "#FFA5CB", }, { label: "Learning Path", data: [80, 70, 75, 65, 55, 45, 35, 55,], borderColor: "#A155B9", backgroundColor: "#E697FF", }, { label: "IQ Test Score", data: [70, 60, 70, 60, 50, 40, 30, 50,], borderColor: "#757FEF", backgroundColor: "#2DB6F5", }, ], }; const ExperienceIQ = () => { // Dropdown const [anchorEl, setAnchorEl] = React.useState(null); const open = Boolean(anchorEl); const handleClick = (event) => { setAnchorEl(event.currentTarget); }; const handleClose = () => { setAnchorEl(null); }; return ( <> Experience IQ Last 15 Days Last Month Last Year ); }; export default ExperienceIQ;