@antv/g2plot
Version:
An interactive and responsive charting library
23 lines (21 loc) • 530 B
text/typescript
import { ColorAttr, Options, StyleAttr } from '../../types';
/** mini 图类型定义需要 omit 很多的 G2 Options 配置 */
export interface ProgressOptions extends Omit<Options, 'data' | 'color'> {
/**
* @title 进度百分比
*/
readonly percent: number;
/**
* @title 条图宽度占比
* @description 范围[0-1]
*/
readonly barWidthRatio?: number;
/**
* @title 进度条颜色
*/
readonly color?: ColorAttr;
/**
* @title 进度条样式
*/
readonly progressStyle?: StyleAttr;
}