45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import DoughnutChart from '../../charts/DoughnutChart';
|
|
|
|
// Import utilities
|
|
import { tailwindConfig } from '../../utils/Utils';
|
|
|
|
function DashboardCard06() {
|
|
|
|
const chartData = {
|
|
labels: ['United States', 'Italy', 'Other'],
|
|
datasets: [
|
|
{
|
|
label: 'Top Countries',
|
|
data: [
|
|
35, 30, 35,
|
|
],
|
|
backgroundColor: [
|
|
tailwindConfig().theme.colors.indigo[500],
|
|
tailwindConfig().theme.colors.blue[400],
|
|
tailwindConfig().theme.colors.indigo[800],
|
|
],
|
|
hoverBackgroundColor: [
|
|
tailwindConfig().theme.colors.indigo[600],
|
|
tailwindConfig().theme.colors.blue[500],
|
|
tailwindConfig().theme.colors.indigo[900],
|
|
],
|
|
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">Top Countries</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 DashboardCard06;
|