| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Sankey = void 0;
- var tslib_1 = require("tslib");
- var util_1 = require("@antv/util");
- var plot_1 = require("../../core/plot");
- var utils_1 = require("../../utils");
- var adaptor_1 = require("./adaptor");
- var constant_1 = require("./constant");
- var helper_1 = require("./helper");
- // 桑基图内置交互
- require("./interactions");
- /**
- * 桑基图 Sankey
- */
- var Sankey = /** @class */ (function (_super) {
- tslib_1.__extends(Sankey, _super);
- function Sankey() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- /** 图表类型 */
- _this.type = 'sankey';
- return _this;
- }
- Sankey.getDefaultOptions = function () {
- return {
- appendPadding: 8,
- syncViewPadding: true,
- nodeStyle: {
- opacity: 1,
- fillOpacity: 1,
- lineWidth: 1,
- },
- edgeStyle: {
- opacity: 0.3,
- lineWidth: 0,
- },
- edgeState: {
- active: {
- style: {
- opacity: 0.8,
- lineWidth: 0,
- },
- },
- },
- label: {
- formatter: function (_a) {
- var name = _a.name;
- return name;
- },
- callback: function (x) {
- var isLast = x[1] === 1; // 最后一列靠边的节点
- return {
- style: {
- fill: '#545454',
- textAlign: isLast ? 'end' : 'start',
- },
- offsetX: isLast ? -8 : 8,
- };
- },
- layout: [
- {
- type: 'hide-overlap',
- },
- ],
- },
- tooltip: {
- showTitle: false,
- showMarkers: false,
- shared: false,
- // 内置:node 不显示 tooltip,edge 显示 tooltip
- showContent: function (items) {
- return !(0, util_1.get)(items, [0, 'data', 'isNode']);
- },
- formatter: function (datum) {
- var source = datum.source, target = datum.target, value = datum.value;
- return {
- name: source + ' -> ' + target,
- value: value,
- };
- },
- },
- nodeWidthRatio: 0.008,
- nodePaddingRatio: 0.01,
- animation: {
- appear: {
- animation: 'wave-in',
- },
- enter: {
- animation: 'wave-in',
- },
- },
- };
- };
- /**
- * @override
- * @param data
- */
- Sankey.prototype.changeData = function (data) {
- this.updateOption({ data: data });
- var _a = (0, helper_1.transformToViewsData)(this.options, this.chart.width, this.chart.height), nodes = _a.nodes, edges = _a.edges;
- var nodesView = (0, utils_1.findViewById)(this.chart, constant_1.NODES_VIEW_ID);
- var edgesView = (0, utils_1.findViewById)(this.chart, constant_1.EDGES_VIEW_ID);
- nodesView.changeData(nodes);
- edgesView.changeData(edges);
- };
- /**
- * 获取适配器
- */
- Sankey.prototype.getSchemaAdaptor = function () {
- return adaptor_1.adaptor;
- };
- /**
- * 获取 条形图 默认配置
- */
- Sankey.prototype.getDefaultOptions = function () {
- return Sankey.getDefaultOptions();
- };
- return Sankey;
- }(plot_1.Plot));
- exports.Sankey = Sankey;
- //# sourceMappingURL=index.js.map
|