UNPKG

react-sleek

Version:

React Sleek Component Library

13 lines (12 loc) 448 B
import { IChartSerie } from './ChartTypes'; export default class ChartUtils { static getMinX(data: IChartSerie[]): number; static getMinY(data: IChartSerie[]): number; static getMaxX(data: IChartSerie[]): number; static getMaxY(data: IChartSerie[]): number; static getYAxisData(data: IChartSerie[]): number[]; private static roundMax; private static roundMin; private static getOnlyX; private static getOnlyY; }