@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
22 lines • 576 B
TypeScript
export interface ChartJS {
type: "bar" | "line" | "scatter" | "bubble" | "pie" | "doughnut" | "polarArea" | "radar";
color?: {
default?: string;
theme?: string;
};
padding?: number[] | ""[];
field?: {
time: string;
value: string;
} | string;
data?: Data[];
onHover?: Function;
onLeave?: Function;
fallback?: any;
}
export interface Data {
value?: number | string;
time?: string;
}
export default function ChartJS(props: ChartJS): import("react").JSX.Element;
//# sourceMappingURL=ChartJS.d.ts.map