'use client' // Next Imports import dynamic from 'next/dynamic' // MUI Imports import Card from '@mui/material/Card' import Typography from '@mui/material/Typography' import CardContent from '@mui/material/CardContent' import Chip from '@mui/material/Chip' import { useTheme } from '@mui/material/styles' // Third-party Imports import type { ApexOptions } from 'apexcharts' // Styled Component Imports const AppReactApexCharts = dynamic(() => import('@/libs/styles/AppReactApexCharts')) const series = [{ data: [32, 52, 72, 94, 116, 94, 72] }] const BarChartRevenueGrowth = () => { // Hook const theme = useTheme() // Vars const successColorWithOpacity = 'var(--mui-palette-success-lightOpacity)' const options: ApexOptions = { chart: { parentHeightOffset: 0, toolbar: { show: false } }, plotOptions: { bar: { borderRadius: 5, distributed: true, columnWidth: '55%' } }, legend: { show: false }, tooltip: { enabled: false }, dataLabels: { enabled: false }, colors: [ successColorWithOpacity, successColorWithOpacity, successColorWithOpacity, successColorWithOpacity, 'var(--mui-palette-success-main)', successColorWithOpacity, successColorWithOpacity ], states: { hover: { filter: { type: 'none' } }, active: { filter: { type: 'none' } } }, grid: { show: false, padding: { top: -15, left: 0, right: 0, bottom: -5 } }, xaxis: { categories: ['M', 'T', 'W', 'T', 'F', 'S', 'S'], axisTicks: { show: false }, axisBorder: { show: false }, tickPlacement: 'on', labels: { style: { colors: 'var(--mui-palette-text-disabled)', fontFamily: theme.typography.fontFamily, fontSize: theme.typography.body2.fontSize as string } } }, yaxis: { show: false }, responsive: [ { breakpoint: 1240, options: { chart: { width: 150 } } }, { breakpoint: 1200, options: { plotOptions: { bar: { columnWidth: '65%' } }, options: { chart: { width: 200 } } } }, { breakpoint: 410, options: { chart: { width: 150 }, plotOptions: { bar: { columnWidth: '60%' } } } } ] } return (
Revenue Growth Weekly Report
$4,673
) } export default BarChartRevenueGrowth