first commit
This commit is contained in:
46
src/partials/analytics/AnalyticsCard09.jsx
Normal file
46
src/partials/analytics/AnalyticsCard09.jsx
Normal file
@@ -0,0 +1,46 @@
|
||||
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 (
|
||||
<div className="flex flex-col col-span-full sm:col-span-6 xl:col-span-4 bg-white shadow-lg rounded-sm border border-slate-200">
|
||||
<header className="px-5 py-4 border-b border-slate-100">
|
||||
<h2 className="font-semibold text-slate-800">Sessions By Age</h2>
|
||||
</header>
|
||||
{/* Chart built with Chart.js 3 */}
|
||||
{/* Change the height attribute to adjust the chart height */}
|
||||
<DoughnutChart data={chartData} width={389} height={260} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default AnalyticsCard09;
|
||||
Reference in New Issue
Block a user