import cls from './index.module.css'; import { randomInt } from '../../../../utils'; import * as echarts from 'echarts'; import { Switch, Radio } from 'antd'; import ReactECharts from 'echarts-for-react'; const SmokeTrendChart = (props) => { const options = { color: ['#FFD160', '#12FFF5', '#2760FF'], grid: { top: 38, right: 12, bottom: 20, left: 48 }, xAxis: { type: 'category', data: Array(7) .fill(1) .map((_, index) => { const today = new Date(); const dtimestamp = today - index * 24 * 60 * 60 * 1000; return `${new Date(dtimestamp).getMonth() + 1}.${new Date( dtimestamp, ).getDate()}`; }) .reverse(), axisLabel: { color: '#fff', fontSize: 12, }, axisTick: { show: false }, axisLine: { lineStyle: { width: 1, color: '#213259', }, }, }, yAxis: { name: '单位m³/h', nameTextStyle: { color: '#fff', fontSize: 10, align: 'right', }, type: 'value', axisLabel: { color: '#fff', fontSize: 12, formatter: '{value} %', }, axisLine: { show: true, lineStyle: { color: '#213259', }, }, splitLine: { lineStyle: { color: '#213259a0', }, }, interval: 10, min: 0, max: 100, }, series: [ { data: Array(7) .fill(1) .map((_) => { return randomInt(60, 100); }), type: 'line', areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, color: '#FFD16040' }, { offset: 0.5, color: '#FFD16020' }, { offset: 1, color: '#FFD16010' }, ]), }, // smooth: true, }, { data: Array(7) .fill(1) .map((_) => { return randomInt(60, 100); }), type: 'line', areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, color: '#12FFF540' }, { offset: 0.5, color: '#12FFF520' }, { offset: 1, color: '#12FFF510' }, ]), }, // smooth: true, }, { data: Array(7) .fill(1) .map((_) => { return randomInt(60, 100); }), type: 'line', areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, color: '#2760FF40' }, { offset: 0.5, color: '#2760FF20' }, { offset: 1, color: '#2760FF10' }, ]), }, // smooth: true, }, ], tooltip: { trigger: 'axis', }, }; function handleSwitchChange(val) { // val: boolean console.log('switch change', val); } return (

能耗趋势图

班次详情
  • 总量
  • 白班
  • 夜班
氧气含量 二氧化硫 一氧化氮 二氧化氮
); }; export default SmokeTrendChart;