90 lines
1.9 KiB
JavaScript
90 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 Spline extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
series: [
|
|
{
|
|
name: "series1",
|
|
data: [31, 40, 28, 51, 42, 109, 100],
|
|
},
|
|
{
|
|
name: "series2",
|
|
data: [11, 32, 45, 32, 34, 52, 41],
|
|
},
|
|
],
|
|
options: {
|
|
dataLabels: {
|
|
enabled: false,
|
|
},
|
|
stroke: {
|
|
curve: "smooth",
|
|
},
|
|
xaxis: {
|
|
type: "datetime",
|
|
categories: [
|
|
"2018-09-19T00:00:00.000Z",
|
|
"2018-09-19T01:30:00.000Z",
|
|
"2018-09-19T02:30:00.000Z",
|
|
"2018-09-19T03:30:00.000Z",
|
|
"2018-09-19T04:30:00.000Z",
|
|
"2018-09-19T05:30:00.000Z",
|
|
"2018-09-19T06:30:00.000Z",
|
|
],
|
|
},
|
|
tooltip: {
|
|
x: {
|
|
format: "dd/MM/yy HH:mm",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
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"
|
|
>
|
|
Spline
|
|
</Typography>
|
|
|
|
<Chart
|
|
options={this.state.options}
|
|
series={this.state.series}
|
|
type="area"
|
|
height={350}
|
|
/>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Spline;
|