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
17 lines (16 loc) • 465 B
TypeScript
import { Plugin, PluginApi, PluginHooks } from '../plugins.js';
export interface RenderControlApi extends PluginApi {
/** Re-renders the chart. */
update(timeInMSecs: number | null): void;
}
export declare class RenderControl implements Plugin {
private _update;
private _timeInMSecs;
private _enabled;
meta: {
name: string;
};
get api(): RenderControlApi;
get hooks(): PluginHooks;
enable(enabled: boolean): void;
}