"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"; const SemiCircleGauge = ({ height = 350 }) => { const [config] = useConfig(); const { theme: mode } = useTheme(); const series = [76]; const options: any = { chart: { toolbar: { show: false, }, offsetY: -20, sparkline: { enabled: true, }, }, stroke: { curve: "smooth", width: 6, }, plotOptions: { radialBar: { startAngle: -90, endAngle: 90, track: { background: colors["default-300"], strokeWidth: "97%", margin: 5, dropShadow: { enabled: true, top: 2, left: 0, color: "#999", opacity: 1, blur: 2, }, }, dataLabels: { name: { show: false, }, value: { offsetY: -2, fontSize: "22px", fontWeight: 700, color: mode === 'light' ? colors["default-600"] : colors["default-300"], }, }, }, }, fill: { type: "gradient", gradient: { shade: "light", shadeIntensity: 0.4, inverseColors: false, opacityFrom: 1, opacityTo: 1, stops: [0, 50, 53, 91], }, }, colors: [colors.info], labels: ["Average Results"], tooltip: { theme: mode === "dark" ? "dark" : "light", }, padding: { top: 0, right: 0, bottom: 0, left: 0, }, }; return ( ); }; export default SemiCircleGauge;