first commit

This commit is contained in:
kandrusyak
2022-05-23 12:56:31 +03:00
commit 3cea343aaf
395 changed files with 37099 additions and 0 deletions

View 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;