Files
CHIEFSOFT\ameye 5f95d857d4 first commit
2023-10-14 22:02:57 -04:00

97 lines
1.9 KiB
JavaScript

import React, { Component } from "react";
import Card from "@mui/material/Card";
import { Typography } from "@mui/material";
import dynamic from "next/dynamic";
const Chart = dynamic(() => import("react-apexcharts"), {
ssr: false,
});
class Grouped extends Component {
constructor(props) {
super(props);
this.state = {
series: [
{
data: [44, 55, 41, 64, 22, 43, 21],
},
{
data: [53, 32, 33, 52, 13, 44, 32],
},
],
options: {
chart: {
type: "bar",
height: 430,
},
plotOptions: {
bar: {
horizontal: true,
dataLabels: {
position: "top",
},
},
},
dataLabels: {
enabled: true,
offsetX: -6,
style: {
fontSize: "12px",
colors: ["#fff"],
},
},
stroke: {
show: true,
width: 1,
colors: ["#fff"],
},
tooltip: {
shared: true,
intersect: false,
},
xaxis: {
categories: [2001, 2002, 2003, 2004, 2005, 2006, 2007],
},
},
};
}
render() {
return (
<>
<Card
sx={{
boxShadow: "none",
borderRadius: "10px",
p: "25px",
mb: "15px",
}}
>
<Typography
as="h3"
sx={{
fontSize: 18,
fontWeight: 500,
borderBottom: "1px solid #EEF0F7",
paddingBottom: "5px",
mb: "15px",
}}
className="for-dark-bottom-border"
>
Grouped
</Typography>
<Chart
options={this.state.options}
series={this.state.series}
type="bar"
height={430}
/>
</Card>
</>
);
}
}
export default Grouped;