import React, { Component } from 'react'; import Chart from 'react-apexcharts'; import { blueGrey, green, red } from '@material-ui/core/colors'; export class HeatmapChart extends Component { constructor(props) { super(props) this.state = { options: { chart: { animations: { enabled: true, easing: 'linear', speed: 250, animateGradually: { enabled: false, speed: 250, }, dynamicAnimation: { enabled: true, speed: 250 } } }, dataLabels: { enabled: false }, colors: [blueGrey[900]], title: { text: props.label, style: { fontSize: '22px', fontWeight: 600, fontFamily: 'Helvetica, Arial, sans-serif', }, }, }, } } render() { return ( ) } } export default HeatmapChart