vizzu
Version:
Vizzu is a free, open-source Javascript/C++ library utilizing a generic dataviz engine that generates many types of charts and seamlessly animates between them. It can be used to create static charts but more importantly it is designed for building animat
10 lines (9 loc) • 314 B
TypeScript
import { CObject, CManagedObject } from './cenv.js';
/** Stored Animation object. */
export declare class CAnimation extends CManagedObject {
}
export declare class CAnimControl extends CObject {
setParam(path: string, value?: string): void;
getParam(path: string): unknown;
storeAnim(): CAnimation;
}