@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) • 423 B
TypeScript
import { IAllAround, IAxisConfig, IXYGridConfig } from "../types";
import { GridConfig } from "./grid-config";
export declare class XYGridConfig extends GridConfig implements IXYGridConfig {
/** The default margin */
static readonly DEFAULT_MARGIN: IAllAround<number>;
static readonly DEFAULT_PADDING: IAllAround<number>;
axis: IAllAround<IAxisConfig>;
interactionPlugins: boolean;
constructor();
}