import React from "react"; import { Box } from "@mui/material"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import InputLabel from "@mui/material/InputLabel"; import MenuItem from "@mui/material/MenuItem"; import FormControl from "@mui/material/FormControl"; import Select from "@mui/material/Select"; import Chart from "chart.js/auto"; import { Line } from "react-chartjs-2"; const labels = ["Sat", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri"]; const data = { labels: labels, datasets: [ { label: "New Visitors", backgroundColor: "#6F52ED", borderColor: "#6F52ED", data: [30, 40, 30, 80, 65, 70, 30], }, { label: "Unique Visitors", backgroundColor: "#2DB6F5", borderColor: "#2DB6F5", data: [55, 60, 55, 45, 35, 55, 60], }, { label: "Previous Visitors", backgroundColor: "#F765A3", borderColor: "#F765A3", data: [45, 30, 40, 30, 20, 30, 40], }, ], }; const options = { plugins: { legend: { labels: { color: '#5B5B98' } }, } } const AudienceOverview = () => { // Select Form const [select, setSelect] = React.useState(""); const handleChange = (event) => { setSelect(event.target.value); }; return ( <> Audience Overview Select ); }; export default AudienceOverview;