@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) • 485 B
TypeScript
import { IBarChartConfig } from "./types";
import { XYGrid } from "../../core/grid/xy-grid";
/**
* Creates an {@link XYGrid} with predefined {@link BarGridConfig} or
* {@link BarHorizontalGridConfig} using {@link IBarChartConfig#horizontal} horizontal property. Default orientation is **vertical**.
*
* @param {IBarChartConfig} [config] bar chart configuration for orientation definition.
* @returns {XYGrid}
*/
export declare function barGrid(config?: IBarChartConfig): XYGrid;