@antv/g2
Version:
the Grammar of Graphics in Javascript
20 lines (19 loc) • 590 B
TypeScript
import { IGroup, IShape } from '../../dependents';
import { GAnimateCfg } from '../../interface';
import { AnimateExtraCfg } from '../interface';
/**
* @ignore
* 沿着 x 方向放大的动画
* @param shape
* @param animateCfg
* @param shapeModel
*/
export declare function scaleInX(shape: IShape | IGroup, animateCfg: GAnimateCfg, cfg: AnimateExtraCfg): void;
/**
* @ignore
* 沿着 y 方向放大的动画
* @param shape
* @param animateCfg
* @param shapeModel
*/
export declare function scaleInY(shape: IShape | IGroup, animateCfg: GAnimateCfg, cfg: AnimateExtraCfg): void;