UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

16 lines (15 loc) 360 B
import Geometry from './base'; import './shape/edge'; /** * Edge 几何标记,用于绘制关系图中的**边**图形,如: * 1. 流程图 * 2. 树 * 3. 弧长连接图 * 4. 和弦图 * 5. 桑基图 */ export default class Edge extends Geometry { readonly type: string; readonly shapeType: string; protected generatePoints: boolean; }