UNPKG

@nova-ui/charts

Version:

Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that

11 lines (10 loc) 401 B
import { Duration } from "moment/moment"; import { IAccessors, IDataSeries } from "../../core/common/types"; /** * This function adds data points indicating that there is an interruption in the data. * * @param dataSeries * @param accessorKey * @param interval */ export declare function calculateMissingData(dataSeries: IDataSeries<IAccessors>, accessorKey: string, interval: Duration): any[];