plane/web/components/ui/graphs/scatter-plot-graph.tsx
2024-03-19 20:08:35 +05:30

24 lines
610 B
TypeScript

// nivo
import { ResponsiveScatterPlot, ScatterPlotSvgProps } from "@nivo/scatterplot";
// types
import { CHARTS_THEME, DEFAULT_MARGIN } from "@/constants/graph";
import { TGraph } from "./types";
// constants
export const ScatterPlotGraph: React.FC<TGraph & Omit<ScatterPlotSvgProps<any>, "height" | "width">> = ({
height = "400px",
width = "100%",
margin,
theme,
...rest
}) => (
<div style={{ height, width }}>
<ResponsiveScatterPlot
margin={{ ...DEFAULT_MARGIN, ...(margin ?? {}) }}
animate
theme={{ ...CHARTS_THEME, ...(theme ?? {}) }}
{...rest}
/>
</div>
);