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 Stepline extends Component { constructor(props) { super(props); this.state = { series: [ { data: [34, 44, 54, 21, 12, 43, 33, 23, 66, 66, 58], }, ], options: { stroke: { curve: "stepline", }, dataLabels: { enabled: false, }, title: { text: "Stepline Chart", align: "left", }, markers: { hover: { sizeOffset: 4, }, }, }, }; } render() { return ( <> Zoomable Timeseries ); } } export default Stepline;