UNPKG

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

16 lines (15 loc) 446 B
import { CCoordSystem } from '../module/ccoordsys'; import { Plugin, PluginApi } from '../plugins'; import { Point } from '../geom'; export interface CoordSystemApi extends PluginApi { toCanvas(point: Point): Point; toRelative(point: Point): Point; } export declare class CoordSystem implements Plugin { private _cCoordSys; constructor(cCoordSys: CCoordSystem); meta: { name: string; }; api: CoordSystemApi; }