"use client"; import { useIsMobile } from "@/hooks/use-mobile"; import type { ApexOptions } from "apexcharts"; import dynamic from "next/dynamic"; type PropsType = { data: { received: { x: unknown; y: number }[]; due: { x: unknown; y: number }[]; }; }; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false, }); export function PaymentsOverviewChart({ data }: PropsType) { const isMobile = useIsMobile(); const options: ApexOptions = { legend: { show: false, }, colors: ["#5750F1", "#0ABEF9"], chart: { type: "area", toolbar: { show: false, }, fontFamily: "inherit", redrawOnParentResize: true, redrawOnWindowResize: true, }, fill: { gradient: { opacityFrom: 0.55, opacityTo: 0, }, }, responsive: [ { breakpoint: 1024, options: { chart: { height: 300, }, }, }, { breakpoint: 1366, options: { chart: { height: 320, }, }, }, ], stroke: { curve: "smooth", width: isMobile ? 2 : 3, }, grid: { strokeDashArray: 5, padding: { right: 8, }, yaxis: { lines: { show: true, }, }, }, dataLabels: { enabled: false, }, tooltip: { marker: { show: true, }, }, xaxis: { axisBorder: { show: false, }, axisTicks: { show: false, }, labels: { rotate: -45, rotateAlways: false, hideOverlappingLabels: true, ...(isMobile && { maxHeight: 60 }), }, tickAmount: isMobile ? 4 : undefined, }, }; return (