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

9 lines (8 loc) 261 B
import { IScale } from "../types"; /** * Simple utility function that checks if given 'px' value is within the interval of the range of given scale * * @param scale * @param px */ export declare function isInRange(scale: IScale<any>, px: number): boolean;