131 lines
2.7 KiB
JavaScript
131 lines
2.7 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 StackedColumns extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
series: [
|
|
{
|
|
name: "PRODUCT A",
|
|
data: [44, 55, 41, 67, 22, 43],
|
|
},
|
|
{
|
|
name: "PRODUCT B",
|
|
data: [13, 23, 20, 8, 13, 27],
|
|
},
|
|
{
|
|
name: "PRODUCT C",
|
|
data: [11, 17, 15, 15, 21, 14],
|
|
},
|
|
{
|
|
name: "PRODUCT D",
|
|
data: [21, 7, 25, 13, 22, 8],
|
|
},
|
|
],
|
|
options: {
|
|
chart: {
|
|
type: "bar",
|
|
height: 350,
|
|
stacked: true,
|
|
toolbar: {
|
|
show: true,
|
|
},
|
|
zoom: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
responsive: [
|
|
{
|
|
breakpoint: 480,
|
|
options: {
|
|
legend: {
|
|
position: "bottom",
|
|
offsetX: -10,
|
|
offsetY: 0,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
plotOptions: {
|
|
bar: {
|
|
horizontal: false,
|
|
borderRadius: 10,
|
|
dataLabels: {
|
|
total: {
|
|
enabled: true,
|
|
style: {
|
|
fontSize: "13px",
|
|
fontWeight: 900,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
xaxis: {
|
|
type: "datetime",
|
|
categories: [
|
|
"01/01/2011 GMT",
|
|
"01/02/2011 GMT",
|
|
"01/03/2011 GMT",
|
|
"01/04/2011 GMT",
|
|
"01/05/2011 GMT",
|
|
"01/06/2011 GMT",
|
|
],
|
|
},
|
|
legend: {
|
|
position: "right",
|
|
offsetY: 40,
|
|
},
|
|
fill: {
|
|
opacity: 1,
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
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"
|
|
>
|
|
Stacked Columns
|
|
</Typography>
|
|
|
|
<Chart
|
|
options={this.state.options}
|
|
series={this.state.series}
|
|
type="bar"
|
|
height={350}
|
|
/>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default StackedColumns;
|