UNPKG

chartly-charts

Version:

Modern themed charts for React applications

24 lines 765 B
import React from "react"; interface ChartlyLineProps { data: any[]; theme?: "cyberpunk" | "techno" | "ocean" | "sunset" | "glassmorphism" | "neomorphism" | "darkMode"; rounded?: boolean; glow?: boolean; shadow?: "small" | "medium" | "large"; tooltip?: boolean; xAxisLabel?: string; yAxisLabel?: string; showGrid?: boolean; gridStyle?: "solid" | "dashed" | "dotted"; legend?: boolean; legendPosition?: "top" | "bottom" | "left" | "right"; width?: number; height?: number; responsive?: boolean; dataKey?: string; strokeWidth?: number; className?: string; } export declare const ChartlyLine: React.FC<ChartlyLineProps>; export {}; //# sourceMappingURL=ChartlyLine.d.ts.map