"use client"; import { Chart as ChartJS, CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, ArcElement, PointElement, } from "chart.js"; import { colors } from "@/lib/colors"; import { useTheme } from "next-themes"; import { hexToRGB } from "@/lib/utils"; import { Line } from "react-chartjs-2"; ChartJS.register( CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, ArcElement, PointElement ); const TitleAlignment = ({ height = 450 }) => { const { theme: mode } = useTheme(); const data: any = { labels: ["January", "February", "March", "April", "May", "Jun", "July"], datasets: [ { label: "Dataset 1", data: [20, 50, 60, 70, 20, 30, 20], borderColor: colors.warning, fill: false, }, ], }; const options: any = { responsive: true, plugins: { legend: { position: "top", // left,right,top,bottom title: { display: true, text: "The Chart Title", color: mode === 'light' ? colors["default-600"] : colors["default-300"], }, labels: { color: mode === 'light' ? colors["default-600"] : colors["default-300"], }, }, }, scales: { y: { border: { display: false }, grid: { drawTicks: false, display: false, }, ticks: { color: mode === 'light' ? colors["default-600"] : colors["default-300"], }, }, x: { grid: { drawTicks: false, display: false, }, ticks: { color: mode === 'light' ? colors["default-600"] : colors["default-300"], }, }, }, maintainAspectRatio: false, }; return (
); }; export default TitleAlignment;