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
8 lines (7 loc) • 341 B
TypeScript
import Vizzu from './vizzu.js';
import { AnimControl } from './animcontrol.js';
/** Promise resolves to the Vizzu object when the animation completed. */
export interface AnimCompleting extends Promise<Vizzu> {
/** Promise resolves to the animation controller object when the animation starts. */
activated?: Promise<AnimControl>;
}