import { ApexOptions } from 'apexcharts'; import React, { useState } from 'react'; import ReactApexChart from 'react-apexcharts'; const options: ApexOptions = { legend: { show: false, position: 'top', horizontalAlign: 'left', }, colors: ['#3C50E0', '#80CAEE'], chart: { fontFamily: 'Satoshi, sans-serif', height: 335, type: 'area', dropShadow: { enabled: true, color: '#623CEA14', top: 10, blur: 4, left: 0, opacity: 0.1, }, toolbar: { show: false, }, }, responsive: [ { breakpoint: 1024, options: { chart: { height: 300, }, }, }, { breakpoint: 1366, options: { chart: { height: 350, }, }, }, ], stroke: { width: [2, 2], curve: 'straight', }, // labels: { // show: false, // position: "top", // }, grid: { xaxis: { lines: { show: true, }, }, yaxis: { lines: { show: true, }, }, }, dataLabels: { enabled: false, }, markers: { size: 4, colors: '#fff', strokeColors: ['#3056D3', '#80CAEE'], strokeWidth: 3, strokeOpacity: 0.9, strokeDashArray: 0, fillOpacity: 1, discrete: [], hover: { size: undefined, sizeOffset: 5, }, }, xaxis: { type: 'category', categories: [ 'Current', '3 Hour', '6 Hour', '9 Hour', '12 Hour', '15 Hour', '18 Hour', '21 Hour', '24 Hour', '27 Hour', '30 Hour', '33 Hour', ], axisBorder: { show: false, }, axisTicks: { show: false, }, }, yaxis: { title: { style: { fontSize: '0px', }, }, min: 0, max: 100, }, }; interface ChartOneState { series: { name: string; data: number[]; }[]; } const LineChart: React.FC = () => { const [state, setState] = useState({ series: [ { name: 'Indoor Temperature', data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30, 45], }, { name: 'Outdoor Temperature', data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39, 51], }, ], }); const handleReset = () => { setState((prevState) => ({ ...prevState, })); }; handleReset; return (

Indoor Temperature

3 Hour Interval

Outdoor Temperature

3 Hour Interval

); }; export default LineChart;