"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 StrokedGauge = ({ height = 350 }) => { const [config] = useConfig(); const { theme: mode } = useTheme(); const series = [67, 80]; const options = { chart: { toolbar: { show: false, }, offsetY: -10, }, plotOptions: { radialBar: { startAngle: -135, endAngle: 135, dataLabels: { name: { fontSize: "16px", color: undefined, offsetY: 120, }, value: { offsetY: 76, fontSize: "22px", color: mode === 'light' ? colors["default-600"] : colors["default-300"], formatter: function (val: number) { return val + "%"; }, }, }, }, }, fill: { type: "gradient", gradient: { shade: "dark", shadeIntensity: 0.15, inverseColors: false, opacityFrom: 1, opacityTo: 1, stops: [0, 50, 65, 91], }, }, stroke: { dashArray: 4, }, labels: ["Median Ratio"], colors: [ colors.primary ], tooltip: { theme: mode === "dark" ? "dark" : "light", }, padding: { top: 0, right: 0, bottom: 0, left: 0, }, }; return ( ); }; export default StrokedGauge;