@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) • 398 B
TypeScript
import { IBarChartConfig } from "./types";
import { LinearScale } from "../../core/common/scales/linear-scale";
import { IXYScales } from "../../core/common/scales/types";
/**
* Generates scales definition to be used with category+value based bar charts
*
* @param config
* @param valueScale
*/
export declare function barScales(config?: IBarChartConfig, valueScale?: LinearScale): IXYScales;