"use client"; import dynamic from "next/dynamic"; const Chart = dynamic(() => import("react-apexcharts"), { ssr: false }); import { colors } from "@/lib/colors"; import { useTheme } from "next-themes"; import { hexToRGB } from "@/lib/utils"; import { useConfig } from "@/hooks/use-config"; import { getGridConfig, getXAxisConfig } from "@/lib/appex-chart-options"; const MonChromePolarArea = ({ height = 300 }) => { const [config] = useConfig(); const { theme: mode } = useTheme(); const series = [42, 47, 52, 58, 65]; const options: any = { chart: { toolbar: { show: false, }, }, dataLabels: { enabled: false, }, labels: ["Rose A", "Rose B", "Rose C", "Rose D", "Rose E"], fill: { opacity: 1, }, stroke: { width: 1, colors: undefined, }, colors: [ colors.primary, ], tooltip: { theme: mode === "dark" ? "dark" : "light", }, grid: getGridConfig(), yaxis: { show: false, }, xaxis: getXAxisConfig( mode === 'light' ? colors["default-600"] : colors["default-300"] ), plotOptions: { polarArea: { rings: { strokeWidth: 0, }, spokes: { strokeWidth: 0, }, }, }, theme: { monochrome: { enabled: true, shadeTo: "light", shadeIntensity: 0.6, }, }, legend: { position: "bottom", labels: { colors: mode === 'light' ? colors["default-600"] : colors["default-300"], }, itemMargin: { horizontal: 5, vertical: 5, }, markers: { width: 10, height: 10, radius: 10, offsetX: config.isRtl ? 5 : -5 } }, padding: { top: 0, right: 0, bottom: 0, left: 0, }, }; return ( ); }; export default MonChromePolarArea;