import axios from 'axios'; import React, { useState, useEffect } from 'react' import { Col } from 'react-bootstrap'; import { Bar, Line } from 'react-chartjs-2' import { callUserInfo } from '../utils/CheckDB'; import { routesClient } from './../routesClient'; import { isLogined } from './../utils/Auth'; function ChartHumidity({humi, newLabel}) { const options = { legend: { display: true, // label 보이기 여부 }, scales: { yAxes: [{ ticks: { min: 0, // y축 스케일에 대한 최소값 설정 stepSize: 1, // y축 그리드 한 칸당 수치 } }] }, // false : 사용자 정의 크기에 따라 그래프 크기가 결정됨. // true : 크기가 알아서 결정됨. maintainAspectRatio: false } const data = { labels: newLabel, datasets: [ { label: '습도', data: humi, lineTension: 0.1, borderWidth: '2', fill: true, backgroundColor: 'rgba(75,192,192,0.1)', borderColor: 'rgba(75,192,192,1)', borderCapStyle: 'round', pointBorderColor: 'rgba(75,192,192,1)', pointBackgroundColor: '#fff', pointBorderWidth: 5, pointHoverRadius: 5, pointHoverBackgroundColor: 'rgba(75,192,192,1)', pointHoverBorderColor: 'rgba(220,220,220,1)', pointHoverBorderWidth: 2, pointRadius: 1, pointHitRadius: 10, } ] }; return ( ) }; export default ChartHumidity;