@cainthus/alex-library
Version:
Component React library for Cainthus - Alex Dashboard.
19 lines (18 loc) • 547 B
TypeScript
import React from 'react';
import './LineChart.scss';
import { Props, State } from './LineChart.types';
declare class LineChart extends React.Component<Props, State> {
static Line: any;
resizeEvent: any;
constructor(props: any);
componentDidMount(): void;
componentWillUnmount(): void;
getXAxisProps: (windowWidth: any) => (list: any) => {
tickCount: any;
interval: number;
};
updateXAxisProps: () => void;
formatYUnit: (unit: any) => any;
render(): JSX.Element;
}
export default LineChart;