animated-charts
Version:
Animated chart web components for all frameworks (React, Angular, Vue, HTML)
17 lines (16 loc) • 430 B
TypeScript
import './area-chart.css';
export declare class AreaChart {
el: HTMLElement;
data: number[];
labels: string[];
color: string;
height: number;
chartTitle?: string;
componentDidLoad(): void;
disconnectedCallback(): void;
handleResize: () => void;
parseArrayProp(prop: any): any[];
getPoints(): string;
getAreaPoints(): string;
render(): import("react/jsx-runtime").JSX.Element;
}