mediahub-fe/app/[locale]/(protected)/charts/rechart/charts-rechart-scatter/basic-scatter.tsx

74 lines
1.7 KiB
TypeScript

"use client";
import { useTheme } from "next-themes";
import { colors } from "@/lib/colors";
import { useConfig } from "@/hooks/use-config";
import {
CartesianGrid,
XAxis,
YAxis,
ResponsiveContainer,
Tooltip,
ScatterChart,
Scatter,
} from "recharts";
import CustomTooltip from "./custom-tooltip";
const data: { x: number; y: number; z: number }[] = [
{ x: 100, y: 200, z: 200 },
{ x: 120, y: 100, z: 260 },
{ x: 170, y: 300, z: 400 },
{ x: 140, y: 250, z: 280 },
{ x: 150, y: 400, z: 500 },
{ x: 110, y: 280, z: 200 },
];
const BasicScatter = ({ height = 300 }) => {
const { theme: mode } = useTheme();
return (
<ResponsiveContainer width="100%" height={height}>
<ScatterChart height={height} data={data}>
<CartesianGrid
stroke='none'
strokeDasharray="3 3"
vertical={false}
/>
<XAxis
type="number"
dataKey="x"
name="stature"
unit="cm"
tick={{
fill: mode === 'light' ? colors["default-600"] : colors["default-300"],
fontSize: "12px",
}}
tickLine={false}
stroke='none'
axisLine={false}
/>
<YAxis
type="number"
dataKey="y"
name="weight"
unit="kg"
tick={{
fill: mode === 'light' ? colors["default-600"] : colors["default-300"],
fontSize: "12px",
}}
tickLine={false}
stroke='none'
/>
<Tooltip content={<CustomTooltip />} />
<Scatter
name="A school"
data={data}
fill={colors.primary}
/>
</ScatterChart>
</ResponsiveContainer>
);
};
export default BasicScatter;