mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
36 lines
890 B
TypeScript
36 lines
890 B
TypeScript
// nivo
|
|
import { ResponsiveLine, LineSvgProps } from "@nivo/line";
|
|
// helpers
|
|
import { CHARTS_THEME, CHART_DEFAULT_MARGIN } from "@plane/constants";
|
|
import { generateYAxisTickValues } from "@/helpers/graph.helper";
|
|
// types
|
|
import { TGraph } from "./types";
|
|
// constants
|
|
|
|
type Props = {
|
|
customYAxisTickValues?: number[];
|
|
};
|
|
|
|
export const LineGraph: React.FC<Props & TGraph & LineSvgProps> = ({
|
|
customYAxisTickValues,
|
|
height = "400px",
|
|
width = "100%",
|
|
margin,
|
|
theme,
|
|
...rest
|
|
}) => (
|
|
<div style={{ height, width }}>
|
|
<ResponsiveLine
|
|
margin={{ ...CHART_DEFAULT_MARGIN, ...(margin ?? {}) }}
|
|
axisLeft={{
|
|
tickSize: 0,
|
|
tickPadding: 10,
|
|
tickValues: customYAxisTickValues ? generateYAxisTickValues(customYAxisTickValues) : undefined,
|
|
}}
|
|
theme={{ ...CHARTS_THEME, ...(theme ?? {}) }}
|
|
animate
|
|
{...rest}
|
|
/>
|
|
</div>
|
|
);
|