UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

12 lines (11 loc) 263 B
import Path, { PathCfg } from './path'; /** 引入 Path 对应的 ShapeFactory */ import './shape/line'; /** * Line 几何标记。 * 常用于折线图的绘制。 */ export default class Line extends Path { type: string; constructor(cfg: PathCfg); }