NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/geometry/edge.js

24 lines
637 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { __extends } from "tslib";
import Geometry from './base';
import './shape/edge';
/**
* Edge 几何标记用于绘制关系图中的****图形
* 1. 流程图
* 2.
* 3. 弧长连接图
* 4. 和弦图
* 5. 桑基图
*/
var Edge = /** @class */ (function (_super) {
__extends(Edge, _super);
function Edge() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = 'edge';
_this.shapeType = 'edge';
_this.generatePoints = true;
return _this;
}
return Edge;
}(Geometry));
export default Edge;
//# sourceMappingURL=edge.js.map