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) 247 B
import { IScale } from "../types"; /** * Merge given domains * * @param domains collected from dataSeries on the chart * @param scale that owns the domains */ export declare function mergeDomains(domains: any[][], scale: IScale<any>): any[];