UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

10 lines (9 loc) 199 B
export type CoordinateType = 'cartesian' | 'polar' | 'geo' | 'none'; export interface IPoint { x: number; y: number; } export interface IPolarPoint { radius: number; angle: number; }