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 ( <> Spline ); } } export default Spline;