cl-react-graph
Version:
React D3 Charts
17 lines (16 loc) • 483 B
TypeScript
/// <reference types="react" />
import { ColorScheme } from "./utils/colorScheme";
export type Props = {
width: number;
height: number;
padding?: number;
data: Record<string, number[]>;
colorScheme?: ColorScheme;
/** @description Chart <title /> */
title?: string;
inactive?: {
stroke: string;
fill: string;
};
};
export declare const Chord: ({ width, height, padding, data, colorScheme, inactive, title, }: Props) => JSX.Element;