mediahub-fe/app/[locale]/(protected)/charts/appex-charts/charts-appex-line/step-linechart.tsx

76 lines
1.4 KiB
TypeScript

"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 StepLineChart = ({ height = 300 }) => {
const [config] = useConfig();
const { theme: mode } = useTheme();
const series = [
{
data: [34, 44, 54, 21, 12, 43, 33, 23, 66, 66, 58],
},
];
const options: any = {
chart: {
toolbar: {
show: false,
},
},
dataLabels: {
enabled: false,
},
stroke: {
curve: "stepline",
},
colors: [
colors.success,
],
tooltip: {
theme: mode === "dark" ? "dark" : "light",
},
grid: getGridConfig(),
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,
},
markers: {
hover: {
sizeOffset: 4,
},
},
};
return (
<Chart
options={options}
series={series}
type="line"
height={height}
width={"100%"}
/>
);
};
export default StepLineChart;