UNPKG

@antv/g2plot

Version:

An interactive and responsive charting library

19 lines (17 loc) 475 B
import { Options, StyleAttr } from '../../types'; /** mini 图类型定义需要 omit 很多的 G2 Options 配置 */ export interface TinyColumnOptions extends Omit<Options, 'data' | 'legend' | 'label'> { /** * @title 具体的数据 */ readonly data: number[]; /** * @title 柱状图宽度占比 * @description 范围[0-1] */ readonly columnWidthRatio?: number; /** * @title 迷你柱形图形样式 */ readonly columnStyle?: StyleAttr; }