UNPKG

@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

14 lines (13 loc) 572 B
import { DataAccessor, IAccessors } from "../../core/common/types"; export interface IXYDataAccessors { /** Accessor for value plotted on the <code>x</code> coordinate */ x: DataAccessor; /** Accessor for value plotted on the <code>y</code> coordinate */ y: DataAccessor; /** Additional custom keys to match the base interface */ [key: string]: DataAccessor | undefined; } export declare class XYAccessors implements IAccessors { /** The default data accessors for using with renderers deriving from XYRenderer */ data: IXYDataAccessors; }