173 lines
3.9 KiB
JavaScript
173 lines
3.9 KiB
JavaScript
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 dynamic from "next/dynamic";
|
|
const Chart = dynamic(() => import("react-apexcharts"), {
|
|
ssr: false,
|
|
});
|
|
|
|
const Overview = () => {
|
|
// Select Form
|
|
const [select, setSelect] = React.useState("");
|
|
const handleChange = (event) => {
|
|
setSelect(event.target.value);
|
|
};
|
|
|
|
// Chart
|
|
const series = [
|
|
{
|
|
name: "Income",
|
|
data: [20, 35, 20, 40, 40, 50, 25, 25, 35, 30, 25, 40],
|
|
},
|
|
];
|
|
const options = {
|
|
chart: {
|
|
toolbar: {
|
|
show: false,
|
|
},
|
|
events: {
|
|
click: function (chart, w, e) {
|
|
// console.log(chart, w, e)
|
|
},
|
|
},
|
|
},
|
|
colors: ["#90C6E0"],
|
|
plotOptions: {
|
|
bar: {
|
|
columnWidth: "30%",
|
|
distributed: true,
|
|
},
|
|
},
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
legend: {
|
|
show: false,
|
|
},
|
|
xaxis: {
|
|
categories: [
|
|
["Jan"],
|
|
["Feb"],
|
|
["Mar"],
|
|
["Api"],
|
|
["May"],
|
|
["Jun"],
|
|
["Jul"],
|
|
["Aug"],
|
|
["Sep"],
|
|
["Oct"],
|
|
["Nov"],
|
|
["Dec"],
|
|
],
|
|
labels: {
|
|
style: {
|
|
colors: "#A9A9C8",
|
|
fontSize: "12px",
|
|
},
|
|
},
|
|
},
|
|
yaxis: {
|
|
labels: {
|
|
style: {
|
|
colors: "#A9A9C8",
|
|
fontSize: "12px",
|
|
},
|
|
},
|
|
axisBorder: {
|
|
show: false,
|
|
colors: "#f6f6f7",
|
|
},
|
|
},
|
|
fill: {
|
|
opacity: 1,
|
|
},
|
|
tooltip: {
|
|
y: {
|
|
formatter: function (val) {
|
|
return "$" + val + "k";
|
|
},
|
|
},
|
|
},
|
|
grid: {
|
|
show: true,
|
|
borderColor: "#EDEFF5",
|
|
strokeDashArray: 5,
|
|
},
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px 25px 15px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "space-between",
|
|
borderBottom: "1px solid #EEF0F7",
|
|
paddingBottom: "10px",
|
|
marginBottom: "10px",
|
|
}}
|
|
className="for-dark-bottom-border"
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
}}
|
|
>
|
|
Overview
|
|
</Typography>
|
|
<Box>
|
|
<FormControl sx={{ minWidth: 120 }} size="small">
|
|
<InputLabel id="demo-select-small" sx={{ fontSize: "14px" }}>
|
|
Select
|
|
</InputLabel>
|
|
<Select
|
|
labelId="demo-select-small"
|
|
id="demo-select-small"
|
|
value={select}
|
|
label="Select"
|
|
onChange={handleChange}
|
|
sx={{ fontSize: "14px" }}
|
|
>
|
|
<MenuItem value={0} sx={{ fontSize: "14px" }}>
|
|
Today
|
|
</MenuItem>
|
|
<MenuItem value={1} sx={{ fontSize: "14px" }}>
|
|
This Week
|
|
</MenuItem>
|
|
<MenuItem value={2} sx={{ fontSize: "14px" }}>
|
|
Last Month
|
|
</MenuItem>
|
|
<MenuItem value={3} sx={{ fontSize: "14px" }}>
|
|
Last 12 Months
|
|
</MenuItem>
|
|
<MenuItem value={4} sx={{ fontSize: "14px" }}>
|
|
All Time
|
|
</MenuItem>
|
|
</Select>
|
|
</FormControl>
|
|
</Box>
|
|
</Box>
|
|
|
|
<Chart options={options} series={series} type="bar" height={275} />
|
|
</Card>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Overview;
|