"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, getYAxisConfig, } from "@/lib/appex-chart-options"; const GradiantLineChart = ({ height = 300 }) => { const [config] = useConfig(); const { theme: mode } = useTheme(); const series = [ { data: [4, 3, 10, 9, 29, 19, 22, 9, 12, 7, 19, 5], }, ]; const options: any = { chart: { toolbar: { show: false, }, }, forecastDataPoints: { count: 3, }, dataLabels: { enabled: false, }, stroke: { curve: "smooth", width: 4, }, colors: [ colors.success, ], tooltip: { theme: mode === "dark" ? "dark" : "light", }, grid: getGridConfig(), fill: { type: "gradient", gradient: { shade: "dark", gradientToColors: [ colors.primary, ], shadeIntensity: 1, type: "horizontal", opacityFrom: 1, opacityTo: 1, stops: [0, 100, 100, 100], }, }, yaxis: getYAxisConfig( mode === 'light' ? colors["default-600"] : colors["default-300"] ), xaxis: getXAxisConfig( mode === 'light' ? colors["default-600"] : colors["default-300"] ), padding: { top: 0, right: 0, bottom: 0, left: 0, }, }; return ( ); }; export default GradiantLineChart;