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