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
18 lines (17 loc) • 399 B
TypeScript
import { Plugin, PluginHooks } from '../plugins.js';
import Vizzu from '../vizzu.js';
export declare class CSSProperties implements Plugin {
private _chart?;
meta: {
name: string;
depends: string[];
};
api: {
prefix: string;
};
constructor(options?: {
prefix?: string;
});
get hooks(): PluginHooks;
register(chart: Vizzu): void;
}