2023-05-11 11:41:04 +00:00
|
|
|
// nivo
|
|
|
|
import { PieSvgProps, ResponsivePie } from "@nivo/pie";
|
|
|
|
// types
|
|
|
|
import { TGraph } from "./types";
|
|
|
|
// constants
|
|
|
|
import { CHARTS_THEME, DEFAULT_MARGIN } from "constants/graph";
|
|
|
|
|
|
|
|
export const PieGraph: React.FC<TGraph & Omit<PieSvgProps<any>, "height" | "width">> = ({
|
|
|
|
height = "400px",
|
|
|
|
width = "100%",
|
|
|
|
margin,
|
|
|
|
theme,
|
|
|
|
...rest
|
|
|
|
}) => (
|
|
|
|
<div style={{ height, width }}>
|
|
|
|
<ResponsivePie
|
2023-05-11 12:08:46 +00:00
|
|
|
margin={{ ...DEFAULT_MARGIN, ...(margin ?? {}) }}
|
|
|
|
theme={{ ...CHARTS_THEME, ...(theme ?? {}) }}
|
2023-05-11 11:41:04 +00:00
|
|
|
animate={true}
|
|
|
|
{...rest}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|