UNPKG

animated-charts

Version:

Animated chart web components for all frameworks (React, Angular, Vue, HTML)

12 lines (11 loc) 282 B
import React from "react"; import "./histogram.css"; export interface HistogramProps { data: number[]; bins?: number; width?: number; height?: number; colors?: string[]; animationDuration?: number; } export declare const Histogram: React.FC<HistogramProps>;