@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
17 lines (16 loc) • 703 B
TypeScript
import { IAllAround, IBorderConfig, IDimensionConfig, IGridConfig } from "../types";
/** See {@link IGridConfig} */
export declare class GridConfig implements IGridConfig {
/** See {@link IGridConfig#interactive} */
interactive: boolean;
/** See {@link IGridConfig#dimension} */
dimension: IDimensionConfig;
/** See {@link IGridConfig#borders} */
borders: IAllAround<IBorderConfig>;
/** See {@link IGridConfig#cursor} */
cursor: string;
/** See {@link IGridConfig#disableRenderAreaHeightCorrection} */
disableRenderAreaHeightCorrection: boolean;
/** See {@link IGridConfig#disableRenderAreaWidthCorrection} */
disableRenderAreaWidthCorrection: boolean;
}