UNPKG

ngx-antv-f2

Version:

Functional Antvis/F2 wrapper for Angular.

28 lines (27 loc) 473 B
export interface ColDef { /** * 通用属性 */ type?: string; formatter?: Function; range?: number[]; alias?: string; tickCount?: string; ticks?: string; /** * 其他属性 */ [key: string]: any; } /** * @author CK * @date 2019/1/13 * @Description: 为数据字段进行列定义 */ export declare class F2Scale { /** * 设置列定义的数据字段名 */ field: string; colDef: ColDef; }