import { ColorAttr, Options, StyleAttr } from '../../types'; /** mini 图类型定义需要 omit 很多的 G2 Options 配置 */ export interface ProgressOptions extends Omit { /** * @title 进度百分比 */ readonly percent: number; /** * @title 条图宽度占比 * @description 范围[0-1] */ readonly barWidthRatio?: number; /** * @title 进度条颜色 */ readonly color?: ColorAttr; /** * @title 进度条样式 */ readonly progressStyle?: StyleAttr; }