import React from 'react'; import DoughnutChart from '../../charts/DoughnutChart'; // Import utilities import { tailwindConfig } from '../../utils/Utils'; function AnalyticsCard09() { const chartData = { labels: ['<18', '18-24', '24-36', '>35'], datasets: [ { label: 'Visit By Age Category', data: [ 30, 50, 5, 15, ], backgroundColor: [ tailwindConfig().theme.colors.indigo[500], tailwindConfig().theme.colors.sky[400], tailwindConfig().theme.colors.rose[500], tailwindConfig().theme.colors.emerald[500], ], hoverBackgroundColor: [ tailwindConfig().theme.colors.indigo[600], tailwindConfig().theme.colors.sky[500], tailwindConfig().theme.colors.rose[600], tailwindConfig().theme.colors.emerald[600], ], hoverBorderColor: tailwindConfig().theme.colors.white, }, ], }; return (

Sessions By Age

{/* Chart built with Chart.js 3 */} {/* Change the height attribute to adjust the chart height */}
); } export default AnalyticsCard09;