@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
12 lines (11 loc) • 501 B
TypeScript
import { XYGridConfig } from "./xy-grid-config";
import { GaugeMode, StandardLinearGaugeThickness } from "../../../gauge/constants";
/**
* Assembles a linear-gauge-specific grid configuration
*
* @param mode vertical or horizontal
* @param thickness The thickness of the gauge
*
* @returns {XYGridConfig} A linear gauge grid configuration
*/
export declare function linearGaugeGridConfig(mode: GaugeMode.Vertical | GaugeMode.Horizontal, thickness?: StandardLinearGaugeThickness): XYGridConfig;