diff --git a/CHANGELOG.md b/CHANGELOG.md index 81455b358bf..f00d41ba600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # ChangeLog -#### 4.6.0-beta.0 +#### 4.6.0-beta - feat: comboCombined Layout from @antv/layout; - feat: combo supports position configurations for any situations; diff --git a/packages/core/package.json b/packages/core/package.json index 502ccd58a66..c1f11554a19 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g6-core", - "version": "0.6.0-beta.0", + "version": "0.6.0-beta.1", "description": "A Graph Visualization Framework in JavaScript", "keywords": [ "antv", diff --git a/packages/core/src/global.ts b/packages/core/src/global.ts index d7bb46cb782..66d4f856ed8 100644 --- a/packages/core/src/global.ts +++ b/packages/core/src/global.ts @@ -64,7 +64,7 @@ const colorSet = { }; export default { - version: '0.6.0-beta.0', + version: '0.6.0-beta.1', rootContainerClassName: 'root-container', nodeContainerClassName: 'node-container', edgeContainerClassName: 'edge-container', diff --git a/packages/element/package.json b/packages/element/package.json index bcbf6c6498e..21dc4e7c258 100644 --- a/packages/element/package.json +++ b/packages/element/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g6-element", - "version": "0.6.0-beta.0", + "version": "0.6.0-beta.1", "description": "A Graph Visualization Framework in JavaScript", "keywords": [ "antv", @@ -61,7 +61,7 @@ }, "dependencies": { "@antv/g-base": "^0.5.1", - "@antv/g6-core": "*", + "@antv/g6-core": "0.6.0-beta.1", "@antv/util": "~2.0.5" }, "devDependencies": { diff --git a/packages/g6/package.json b/packages/g6/package.json index fbb3f533722..33bba430b95 100644 --- a/packages/g6/package.json +++ b/packages/g6/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g6", - "version": "4.6.0-beta.0", + "version": "4.6.0-beta.1", "description": "A Graph Visualization Framework in JavaScript", "keywords": [ "antv", @@ -66,7 +66,7 @@ ] }, "dependencies": { - "@antv/g6-pc": "*" + "@antv/g6-pc": "0.6.0-beta.1" }, "devDependencies": { "@babel/core": "^7.7.7", diff --git a/packages/g6/src/index.ts b/packages/g6/src/index.ts index 8f57f6d1654..a20d7631f6f 100644 --- a/packages/g6/src/index.ts +++ b/packages/g6/src/index.ts @@ -1,7 +1,7 @@ import G6 from '@antv/g6-pc'; -G6.version = '4.6.0-beta.0'; +G6.version = '4.6.0-beta.1'; export * from '@antv/g6-pc'; export default G6; -export const version = '4.6.0-beta.0'; +export const version = '4.6.0-beta.1'; diff --git a/packages/pc/package.json b/packages/pc/package.json index 115fde045ea..14acc3fb8ec 100644 --- a/packages/pc/package.json +++ b/packages/pc/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g6-pc", - "version": "0.6.0-beta.0", + "version": "0.6.0-beta.1", "description": "A Graph Visualization Framework in JavaScript", "keywords": [ "antv", @@ -74,12 +74,12 @@ "@antv/g-canvas": "^0.5.2", "@antv/g-math": "^0.1.1", "@antv/g-svg": "^0.5.1", - "@antv/g6-core": "*", - "@antv/g6-plugin": "*", - "@antv/g6-element": "*", + "@antv/g6-core": "0.6.0-beta.1", + "@antv/g6-plugin": "0.6.0-beta.1", + "@antv/g6-element": "0.6.0-beta.1", "@antv/algorithm": "^0.1.8", "@antv/hierarchy": "^0.6.7", - "@antv/layout": "0.2.0-beta.0", + "@antv/layout": "^0.2.0-beta.1", "@antv/matrix-util": "^3.1.0-beta.3", "@antv/path-util": "^2.0.3", "@antv/util": "~2.0.5", diff --git a/packages/pc/src/global.ts b/packages/pc/src/global.ts index 7dc8ee356cc..7d8478f7aad 100644 --- a/packages/pc/src/global.ts +++ b/packages/pc/src/global.ts @@ -7,7 +7,7 @@ const textColor = 'rgb(0, 0, 0)'; const colorSet = getColorsWithSubjectColor(subjectColor, backColor); export default { - version: '0.6.0-beta.0', + version: '0.6.0-beta.1', rootContainerClassName: 'root-container', nodeContainerClassName: 'node-container', edgeContainerClassName: 'edge-container', diff --git a/packages/pc/tests/unit/layout/combo-combined-spec.ts b/packages/pc/tests/unit/layout/combo-combined-spec.ts index 8027901a803..38d0f823b93 100644 --- a/packages/pc/tests/unit/layout/combo-combined-spec.ts +++ b/packages/pc/tests/unit/layout/combo-combined-spec.ts @@ -1,7 +1,7 @@ import G6 from '../../../src'; import { clone } from '@antv/util'; import dataset from './data'; -import { ConcentricLayout, GForceLayout } from '@antv/layout'; +import { ConcentricLayout, GForceLayout, ForceAtlas2Layout } from '@antv/layout'; import * as d3Force from 'd3-force'; import { isFunction } from 'util'; @@ -10279,148 +10279,49 @@ const div = document.createElement('div'); div.id = 'force-layout'; document.body.appendChild(div); -// xdescribe('no node and one node', () => { -// it('layout without node', (done) => { -// const testData = {}; -// const graph = new G6.Graph({ -// container: div, -// layout: { -// type: 'comboCombined', -// }, -// width: 500, -// height: 500, -// }); -// graph.data(testData); -// graph.render(); -// done(); -// }); -// it('layout with one node', (done) => { -// const testData = { -// nodes: [ -// { -// id: 'node', -// x: 0, -// y: 0, -// }, -// ], -// }; -// const graph = new G6.Graph({ -// container: div, -// layout: { -// type: 'comboCombined', -// }, -// width: 500, -// height: 500, -// }); -// graph.on('afterlayout', () => { -// expect(testData.nodes[0].x).toBe(250); -// expect(testData.nodes[0].y).toBe(250); -// done(); -// }); -// graph.data(testData); -// graph.render(); -// }); -// }); - -// xdescribe('combo force layout', () => { -// it('combo force layout with default configs, emit afterlayout', (done) => { -// const node = data.nodes[0]; -// const graph = new G6.Graph({ -// container: div, -// layout: { -// type: 'comboCombined', -// innerLayout: new ConcentricLayout({ sortBy: 'degree' }) -// }, -// width: 500, -// height: 500, -// defaultNode: { size: 10 }, -// modes: { -// default: ['drag-canvas', 'zoom-canvas', 'drag-combo', 'collapse-expand-combo'] // 'collapse-expand-combo', -// }, -// animate: true, -// animateCfg: { -// duration: 100 -// } -// }); - -// graph.on('canvas:click', e => { -// graph.layout(); -// }) -// // graph.on('combo:click', e => { -// // graph.uncombo(e.item.getID()); -// // // graph.layout(); -// // }) - -// graph.on('afterlayout', () => { -// console.log('data.nodes', data.nodes); -// expect(node.x).not.toEqual(undefined); -// expect(node.y).not.toEqual(undefined); -// expect(node.x).not.toEqual(NaN); -// expect(node.y).not.toEqual(NaN); -// done(); -// }); -// graph.data(data); -// graph.render(); -// }); -// }); - -describe('real data', () => { - rdata.nodes.forEach(node => node.type = 'circle'); - rdata.edges.forEach(edge => { - if (edge.source === edge.target) edge.type = 'loop' - }) - const graph = new G6.Graph({ - container: div, - layout: { - type: 'comboCombined', - outerLayout: new GForceLayout({ - preventOverlap: true, - animate: false, - linkDistance: (edge, source, target) => { - const nodeSize = ((source.size?.[0] || 40) + (target.size?.[0] || 40)) / 2; - return nodeSize * 4; - } - }) - // innerLayout: new ConcentricLayout({ sortBy: 'degree' }) - }, - width: 500, - height: 500, - defaultCombo: { - padding: 10, - style: { - fillOpacity: 0.7 +describe('no node and one node', () => { + it('layout without node', (done) => { + const testData = {}; + const graph = new G6.Graph({ + container: div, + layout: { + type: 'comboCombined', }, - labelCfg: { - style: { - fill: '#fff' - } - } - }, - defaultNode: { - labelCfg: { - position: 'bottom', - style: { - fill: '#fff' - } - } - }, - modes: { - default: ['drag-canvas', 'zoom-canvas', { - type: 'drag-combo', - onlyChangeComboSize: true - }, { - type: 'drag-node', - onlyChangeComboSize: true - }] // 'collapse-expand-combo', - }, - animate: true, - animateCfg: { duration: 500, easing: 'easeCubic' }, - groupByTypes: false + width: 500, + height: 500, + }); + graph.data(testData); + graph.render(); + graph.destroy(); + done(); + }); + it('layout with one node', (done) => { + const testData = { + nodes: [ + { + id: 'node', + x: 0, + y: 0, + }, + ], + }; + const graph = new G6.Graph({ + container: div, + layout: { + type: 'comboCombined', + }, + width: 500, + height: 500, + }); + graph.on('afterlayout', () => { + expect(testData.nodes[0].x).toBe(250); + expect(testData.nodes[0].y).toBe(250); + done(); + }); + graph.data(testData); + graph.render(); + graph.destroy(); }); - graph.data(rdata); - graph.render(); - console.log('graph', graph, rdata) - it('t', () => { }); }); describe('scenario', () => { @@ -10520,8 +10421,6 @@ describe('scenario', () => { // 点击 combo 时,uncombo,并加入一个代表被解散 combo 的节点,恢复相关的边(包括内部元素到其他 combo 的边,以及新节点相关的边(random)) graph.on('combo:click', e => { const combo = e.item; - console.log('combo', combo, combo.getBBox()); - debugger const comboChildren = combo.getChildren(); const children = comboChildren.nodes.concat(comboChildren.combos); const newEdges = []; @@ -10575,6 +10474,7 @@ describe('scenario', () => { combo.getKeyShape().animate({ y: -comboBBox.height / 2, r: 10 }, { duration: 300, easing: 'easeCubic' }); setTimeout(() => { graph.uncombo(combo.getID()); + graph.layout(); }, 300); // 标记新增的边,用于观察 @@ -10663,52440 +10563,4 @@ describe('scenario', () => { it('senario', () => { }); -}); - -describe.only('change data and layout', () => { - it('change data and layout', () => { - const beforeData = { - "nodes": [ - { - "id": "2021052601883396", - "label": "履约事件", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883396", - "myDraft": true, - "name": "MKG.PaymentEvents", - "nameZh": "履约事件", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 381.91257741983316, - "y": 259.2698360463568, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.PaymentEvents", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021052601883396", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021061602092722", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 46 - }, - { - "id": "2021042101657968", - "label": "产品", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2050102, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042101657968", - "myDraft": true, - "name": "MKG.Product", - "nameZh": "产品", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 792.7788347245463, - "y": 19.878606549639855, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Product", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021042101657968", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647731", - "label": "兴趣地址", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647731", - "myDraft": true, - "name": "MKG.InterestPlace", - "nameZh": "兴趣地址", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 593.6126535403821, - "y": 622.5535679166017, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.InterestPlace", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021042001647731", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-706000074", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 12 - }, - { - "id": "2021061602092727", - "label": "热点事件", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021061602092727", - "myDraft": true, - "name": "MKG.HotEvent", - "nameZh": "热点事件", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 381.91257741983316, - "y": 219.2698360463568, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.HotEvent", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021061602092727", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021061602092722", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 45 - }, - { - "id": "2021061702105197", - "label": "主题", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 10908, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021061702105197", - "myDraft": true, - "name": "MKG.Topic", - "nameZh": "主题", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 688.4638514269392, - "y": 390.80280621108216, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Topic", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021061702105197", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 105 - }, - { - "id": "2021042101657969", - "label": "标准化服务", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 1113, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042101657969", - "myDraft": true, - "name": "MKG.StandService", - "nameZh": "标准化服务", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 618.0929591722611, - "y": -101.72500758813828, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.StandService", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021042101657969", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647740", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 74 - }, - { - "id": "2021053101941874", - "label": "口碑门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 15047828, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941874", - "myDraft": true, - "name": "MKG.KoubeiShop", - "nameZh": "口碑门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 931.3274183128711, - "y": -116.63233617467716, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.KoubeiShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#FF99C3", - "typeId": "2021053101941874", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647749", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 62 - }, - { - "id": "2021042001647724", - "label": "功能", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647724", - "myDraft": true, - "name": "MKG.Function", - "nameZh": "功能", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 573.2884417640665, - "y": 390.80280621108216, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Function", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#1E9493", - "typeId": "2021042001647724", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 104 - }, - { - "id": "2021051301783085", - "label": "间连商户", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 434352936, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021051301783085", - "myDraft": true, - "name": "MKG.IndirectMerchant", - "nameZh": "间连商户", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 531.6102995537426, - "y": -44.91027905070766, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.IndirectMerchant", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021051301783085", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647734", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 86 - }, - { - "id": "2021042101657967", - "label": "应用服务", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2861727, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042101657967", - "myDraft": true, - "name": "MKG.AppService", - "nameZh": "应用服务", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 618.0929591722611, - "y": -61.72500758813828, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.AppService", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021042101657967", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647740", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 73 - }, - { - "id": "2021053101941875", - "label": "淘票票门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 11252, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941875", - "myDraft": true, - "name": "MKG.TaopiaopiaoShop", - "nameZh": "淘票票门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 896.6864021614936, - "y": -136.63233617467716, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.TaopiaopiaoShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#9FB40F", - "typeId": "2021053101941875", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647749", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 61 - }, - { - "id": "2021042101658086", - "label": "意图", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 3753, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "2021042101658086", - "myDraft": true, - "name": "MKG.Intent", - "nameZh": "意图", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "通用实体链指算子", - "iGood": 0, - "id": 19000090, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "EntityLinker", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000051&operatorId=19000090", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 580.2343688707438, - "y": 430.19511633157043, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Intent", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021042101658086", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 103 - }, - { - "id": "2021070602724529", - "label": "电影人", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 1070011, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021070602724529", - "myDraft": true, - "name": "MKG.FilmPerson", - "nameZh": "电影人", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 566.452124266952, - "y": 150.03537923925575, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.FilmPerson", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021070602724529", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647738", - "label": "PID", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 422017951, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647738", - "myDraft": true, - "name": "MKG.PartnerID", - "nameZh": "PID", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 773.1316623653236, - "y": 106.8688994694984, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.PartnerID", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#FF9845", - "typeId": "2021042001647738", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021081904543901", - "label": "标准标签", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 754, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021081904543901", - "myDraft": true, - "name": "MKG.StandardTag", - "nameZh": "标准标签", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 630.8761465955029, - "y": 342.48098432667786, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.StandardTag", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021081904543901", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 102 - }, - { - "id": "2021042001647723", - "label": "类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647723", - "myDraft": true, - "name": "MKG.Category", - "nameZh": "类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 593.2884417640664, - "y": 356.16179005970463, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Category", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021042001647723", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 101 - }, - { - "id": "2021042001647722", - "label": "品牌", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 118351, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647722", - "myDraft": true, - "name": "MKG.Brand", - "nameZh": "品牌", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 852.9593666933196, - "y": 138.48121147646864, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Brand", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021042001647722", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647721", - "label": "兴趣区域", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 1130850, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647721", - "myDraft": true, - "name": "MKG.AOI", - "nameZh": "兴趣区域", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 797.4123358994632, - "y": 319.43911475158654, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.AOI", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021042001647721", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "707000062", - "label": "国家", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 305000054, - "dataCount": 237, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "707000062", - "myDraft": true, - "name": "Country", - "nameZh": "国家", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 898.3590208232861, - "y": 451.39645597240366, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "Country", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "707000062", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021062202192858", - "label": "标准门店类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 517, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021062202192858", - "myDraft": true, - "name": "MKG.ShopCategory", - "nameZh": "标准门店类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 1164.1295882222082, - "y": -59.288268428035494, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.ShopCategory", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021062202192858", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021053101941871", - "label": "大麦门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2732, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941871", - "myDraft": true, - "name": "MKG.DamaiShop", - "nameZh": "大麦门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 862.045386010116, - "y": -76.63233617467719, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.DamaiShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021053101941871", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647749", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 60 - }, - { - "id": "2021042001647739", - "label": "兴趣地点", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 87543183, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647739", - "myDraft": true, - "name": "MKG.POI", - "nameZh": "兴趣地点", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 696.8074715181524, - "y": 297.4166294633568, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.POI", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021042001647739", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021062202192857", - "label": "应用服务类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 474, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021062202192857", - "myDraft": true, - "name": "MKG.ServiceCategory", - "nameZh": "应用服务类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 444.0324704728855, - "y": 123.16478751502784, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.ServiceCategory", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021062202192857", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021061502070640", - "label": "淘宝商品", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021061502070640", - "myDraft": true, - "name": "MKG.TaobaoItem", - "nameZh": "淘宝商品", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 690.2997394372172, - "y": 102.10355030750456, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.TaobaoItem", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021061502070640", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "706000077", - "label": "省", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 34, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "706000077", - "myDraft": true, - "name": "Province", - "nameZh": "省", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "省级行政区链指算子", - "iGood": 0, - "id": 19000025, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "province-link-operator", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000035&operatorId=19000025", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 796.1009333159872, - "y": 415.4268861284187, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "Province", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "706000077", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "706000078", - "label": "市", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 362, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "706000078", - "myDraft": true, - "name": "City", - "nameZh": "市", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "城市链指算子", - "iGood": 0, - "id": 19000033, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "city-link-operator", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000039&operatorId=19000033", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 710.9570240453364, - "y": 462.4587155307034, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "City", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "706000078", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "706000076", - "label": "区县", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 3140, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "706000076", - "myDraft": true, - "name": "District", - "nameZh": "区县", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "区县行政区链指算子", - "iGood": 0, - "id": 19000035, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "district-link-operator", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000041&operatorId=19000035", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 790.7605381205339, - "y": 501.22153459800006, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "District", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "706000076", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021071403192966", - "label": "品类", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 19892, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021071403192966", - "myDraft": true, - "name": "MKG.ProductCategory", - "nameZh": "品类", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 935.1403292647856, - "y": 96.22709173176509, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.ProductCategory", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021071403192966", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021112205696328", - "label": "自然人", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 921776978, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021112205696328", - "myDraft": true, - "name": "MKG.Person", - "nameZh": "自然人", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 813.2778816168102, - "y": 227.874854202066, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Person", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021112205696328", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021070802876233", - "label": "电影类型", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 69, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021070802876233", - "myDraft": true, - "name": "MKG.FilmType", - "nameZh": "电影类型", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 668.4638514269392, - "y": 356.1617900597046, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.FilmType", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#1E9493", - "typeId": "2021070802876233", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 100 - }, - { - "id": "2021052601883401", - "label": "用户", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 951741873, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883401", - "myDraft": true, - "name": "MKG.User", - "nameZh": "用户", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 723.7563540434256, - "y": 181.87256138619017, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.User", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#76523B", - "typeId": "2021052601883401", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021102005411227", - "label": "对象概念", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 335000009, - "dataCount": 66489, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021102005411227", - "myDraft": true, - "name": "CKG.Object", - "nameZh": "对象概念", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 989.9382601878009, - "y": 13.851915530302866, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "CKG.Object", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#945FB9", - "typeId": "2021102005411227", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021102005411229", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 23 - }, - { - "id": "706000075", - "label": "行政区域", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 1, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "706000075", - "myDraft": true, - "name": "AdministractiveArea", - "nameZh": "行政区域", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 593.6126535403821, - "y": 582.5535679166017, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "AdministractiveArea", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#FF9845", - "typeId": "706000075", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-706000074", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 11 - }, - { - "id": "2021052601883395", - "label": "物品", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883395", - "myDraft": true, - "name": "MKG.Item", - "nameZh": "物品", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 650.8761465955029, - "y": 455.90662071903205, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Item", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021052601883395", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 99 - }, - { - "id": "2021070602724516", - "label": "电影", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 941924, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021070602724516", - "myDraft": true, - "name": "MKG.Film", - "nameZh": "电影", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 615.8351101619025, - "y": 70.70915944258564, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Film", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021070602724516", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021051301783084", - "label": "直连商户", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 386098230, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021051301783084", - "myDraft": true, - "name": "MKG.DirectMerchant", - "nameZh": "直连商户", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 531.6102995537426, - "y": -4.910279050707661, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.DirectMerchant", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021051301783084", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647734", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 85 - }, - { - "id": "2021052601883399", - "label": "场景", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883399", - "myDraft": true, - "name": "MKG.Scene", - "nameZh": "场景", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 681.517924320262, - "y": 430.19511633157043, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Scene", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021052601883399", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 98 - }, - { - "id": "2021053101941872", - "label": "饿了么门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2884298, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941872", - "myDraft": true, - "name": "MKG.EleShop", - "nameZh": "饿了么门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 896.6864021614936, - "y": -56.632336174677185, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.EleShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#945FB9", - "typeId": "2021053101941872", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647749", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 59 - }, - { - "id": "2021053101941854", - "label": "消费券", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2072786, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941854", - "myDraft": true, - "name": "MKG.Benefit", - "nameZh": "消费券", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 942.2551037778328, - "y": 221.30533160844095, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Benefit", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021053101941854", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021051801807030", - "label": "行业类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 239, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021051801807030", - "myDraft": true, - "name": "MKG.MCC2", - "nameZh": "行业类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 610.8761465955029, - "y": 455.90662071903205, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.MCC2", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021051801807030", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 97 - }, - { - "id": "2021053101941873", - "label": "飞猪门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 922861, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941873", - "myDraft": true, - "name": "MKG.FliggyShop", - "nameZh": "飞猪门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 931.3274183128711, - "y": -76.63233617467718, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.FliggyShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021053101941873", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647749", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 58 - }, - { - "id": "2021053101936949", - "label": "蚂蚁门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 114566354, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101936949", - "myDraft": true, - "name": "MKG.MifShop", - "nameZh": "蚂蚁门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 862.0453860101161, - "y": -116.63233617467719, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.MifShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#1E9493", - "typeId": "2021053101936949", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647749", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 57 - }, - { - "id": "2021071603289465", - "label": "WiFi", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 470057729, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021071603289465", - "myDraft": true, - "name": "MKG.WiFi", - "nameZh": "WiFi", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 525.4768906809878, - "y": 308.37267160797273, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.WiFi", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021071603289465", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021071603289464", - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 34 - } - ], - "edges": [ - { - "id": "combo-2021052601883533", - "source": "combo-2021061602092722", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883533, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021052601883399", - "type": "relatedScene", - "typeZh": "关联场景" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedScene", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_relatedScene_MKG.Scene", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883519", - "source": "combo-2021061602092722", - "target": "combo-2021042001647734", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883519, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021042001647734", - "type": "hasSeller", - "typeZh": "履约方" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasSeller", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_hasSeller_MKG.Merchant", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883509", - "source": "combo-2021061602092722", - "target": "2021052601883401", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883509, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021052601883401", - "type": "hasBuyer", - "typeZh": "支付方" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBuyer", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_hasBuyer_MKG.User", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883508", - "source": "combo-2021061602092722", - "target": "2021042001647739", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883508, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021042001647739", - "type": "eventPOI", - "typeZh": "履约POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "eventPOI", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_eventPOI_MKG.POI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883520", - "source": "combo-2021061602092722", - "target": "combo-2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883520, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021042001647749", - "type": "hasSeller", - "typeZh": "履约方" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasSeller", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_hasSeller_MKG.Shop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021071403193210", - "source": "2021042101657968", - "target": "2021071403192966", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 1248145, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403193210, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657968", - "target": "2021071403192966", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Product_hasCategory_MKG.ProductCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "combo-2021052601883529", - "source": "combo-706000074", - "target": "706000078", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883529, - "logKey": "", - "operation": "", - "relationSource": 2021052601883406, - "source": "2021042001647731", - "target": "706000078", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": true, - "spoLabel": "MKG.InterestPlace_locatedAt_City", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883528", - "source": "combo-706000074", - "target": "706000077", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883528, - "logKey": "", - "operation": "", - "relationSource": 2021052601883405, - "source": "2021042001647731", - "target": "706000077", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": true, - "spoLabel": "MKG.InterestPlace_locatedAt_Province", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883527", - "source": "combo-706000074", - "target": "706000076", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883527, - "logKey": "", - "operation": "", - "relationSource": 2021052601883407, - "source": "2021042001647731", - "target": "706000076", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": true, - "spoLabel": "MKG.InterestPlace_locatedAt_District", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021062202185307", - "source": "combo-2021061602092722", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202185307, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061602092727", - "target": "2021042101657967", - "type": "relatedService", - "typeZh": "关联服务" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedService", - "virtual": true, - "spoLabel": "MKG.HotEvent_relatedService_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021061702105408", - "source": "2021061702105197", - "target": "2021052601883399", - "label": "包含场景", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061702105408, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021052601883399", - "type": "hasScene", - "typeZh": "包含场景" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasScene", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Topic_hasScene_MKG.Scene", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasScene", - "previousColorType": "#1E9493" - }, - "_label": "包含场景", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包含场景", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021070102463430", - "source": "2021061702105197", - "target": "2021061702105197", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 167, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102463430, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021061702105197", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Topic_isA_MKG.Topic", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021070202502382", - "source": "combo-2021042001647754", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 58051, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070202502382, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021042101657967", - "type": "relatedService", - "typeZh": "包含服务" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedService", - "virtual": true, - "spoLabel": "MKG.Topic_relatedService_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021062202185306", - "source": "2021061702105197", - "target": "2021042101658086", - "label": "包含意图", - "data": { - "belongToProject": 0, - "dataCount": 433, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202185306, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021042101658086", - "type": "includeIntent", - "typeZh": "包含意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "includeIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Topic_includeIntent_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "includeIntent", - "previousColorType": "#1E9493" - }, - "_label": "包含意图", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包含意图", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "combo-2021042101658013", - "source": "combo-2021042001647740", - "target": "combo-2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658013, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657969", - "target": "2021042001647749", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.StandService_relatedShop_MKG.Shop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021042101658015", - "source": "2021042101657969", - "target": "2021042101657967", - "label": "关联应用", - "data": { - "belongToProject": 0, - "dataCount": 1089, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658015, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657969", - "target": "2021042101657967", - "type": "relatedTo", - "typeZh": "关联应用" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedTo", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.StandService_relatedTo_MKG.AppService", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "relatedTo", - "previousColorType": "#5B8FF9" - }, - "_label": "关联应用", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联应用", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "combo-2021042101658011", - "source": "combo-2021042001647740", - "target": "2021042001647722", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658011, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657969", - "target": "2021042001647722", - "type": "relatedBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedBrand", - "virtual": true, - "spoLabel": "MKG.StandService_relatedBrand_MKG.Brand", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021090104739405", - "source": "2021053101941874", - "target": "2021053101941873", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021090104739405, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021053101941873", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.FliggyShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021082504625426", - "source": "2021053101941874", - "target": "2021053101941872", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504625426, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021053101941872", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.EleShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "combo-2021053101942007", - "source": "combo-2021042001647749", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942007, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071403197171", - "source": "2021053101941874", - "target": "2021042101657968", - "label": "账单产品", - "data": { - "belongToProject": 0, - "dataCount": 3534099, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197171, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021062102181056", - "source": "combo-2021042001647749", - "target": "2021042001647721", - "data": { - "belongToProject": 0, - "dataCount": 2465, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181056, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021070802880015", - "source": "combo-2021042001647749", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 13136779, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880015, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071403197155", - "source": "2021053101941874", - "target": "2021042101658086", - "label": "账单意图", - "data": { - "belongToProject": 0, - "dataCount": 4776538, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197155, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071603299627", - "source": "combo-2021042001647749", - "target": "2021042001647738", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299627, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021060101944683", - "source": "2021053101941874", - "target": "2021042001647738", - "label": "拥有支付码", - "data": { - "belongToProject": 0, - "dataCount": 24078137, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101944683, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021060201957790", - "source": "combo-2021042001647749", - "target": "2021042001647739", - "data": { - "belongToProject": 0, - "dataCount": 13449741, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201957790, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021062302196802", - "source": "combo-2021042001647749", - "target": "2021062202192858", - "data": { - "belongToProject": 0, - "dataCount": 15870280, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196802, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021070202516587", - "source": "2021053101941874", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 1166051, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070202516587, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "combo-2021071403197139", - "source": "combo-2021042001647749", - "target": "2021042001647722", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197139, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021053101941997", - "source": "2021053101941874", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 210469, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101941997, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071403197161", - "source": "combo-2021042001647734", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 17932653, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197161, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021052701910993", - "source": "2021051301783085", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910993, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071403197130", - "source": "combo-2021042001647734", - "target": "2021042001647722", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197130, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021052701910987", - "source": "2021051301783085", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910987, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071603299666", - "source": "combo-2021042001647734", - "target": "combo-2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 3632, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299666, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941875", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021082604654478", - "source": "2021051301783085", - "target": "2021053101941875", - "label": "拥有门店", - "data": { - "belongToProject": 0, - "dataCount": 16733, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082604654478, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941875", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052701910997", - "source": "combo-2021042001647734", - "target": "2021042001647739", - "data": { - "belongToProject": 0, - "dataCount": 13853406, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910997, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071403197145", - "source": "combo-2021042001647734", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 44477509, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197145, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052701910991", - "source": "combo-2021042001647734", - "target": "2021042001647738", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910991, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "关联pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021062302196797", - "source": "combo-2021042001647740", - "target": "2021062202192857", - "data": { - "belongToProject": 0, - "dataCount": 1742664, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196797, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021062202192857", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": true, - "spoLabel": "MKG.AppService_hasCategory_MKG.ServiceCategory", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071403175576", - "source": "combo-2021042001647740", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 1205208, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403175576, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": true, - "spoLabel": "MKG.AppService_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021063002408071", - "source": "combo-2021042001647740", - "target": "2021042001647738", - "data": { - "belongToProject": 0, - "dataCount": 892578, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021063002408071, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": true, - "spoLabel": "MKG.AppService_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021063002408072", - "source": "combo-2021042001647740", - "target": "2021042001647721", - "data": { - "belongToProject": 0, - "dataCount": 19633, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021063002408072, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": true, - "spoLabel": "MKG.AppService_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021082504630463", - "source": "2021053101941875", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630463, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.TaopiaopiaoShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "combo-2021071103019004", - "source": "combo-2021042001647749", - "target": "2021070602724516", - "data": { - "belongToProject": 0, - "dataCount": 219466, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071103019004, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021070602724516", - "type": "onViewFilm", - "typeZh": "上映影片" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "onViewFilm", - "virtual": true, - "spoLabel": "MKG.TaopiaopiaoShop_onViewFilm_MKG.Film", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021042101658125", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "互斥意图等5种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658125, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "exclusiveIntent", - "typeZh": "互斥意图" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "exclusiveIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_exclusiveIntent_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "exclusiveIntent", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021061602095887", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "实例化", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061602095887, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "isInstanceOf", - "typeZh": "实例化" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isInstanceOf", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_isInstanceOf_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021052601883534", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "相似意图", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883534, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "similarIntent", - "typeZh": "相似意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "similarIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_similarIntent_MKG.Intent", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021042101658132", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "相关意图", - "data": { - "belongToProject": 0, - "dataCount": 94, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658132, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "相关意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021051801818437", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 3752, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818437, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "isA", - "typeZh": "上下位" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_isA_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "互斥意图等5种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "互斥意图等5种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021111805652056", - "source": "2021042101658086", - "target": "2021081904543901", - "label": "适用场景等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 10, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805652056, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021081904543901", - "type": "appliedSceneTag", - "typeZh": "适用场景" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "appliedSceneTag", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_appliedSceneTag_MKG.StandardTag", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "appliedSceneTag", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021111805652055", - "source": "2021042101658086", - "target": "2021081904543901", - "label": "适用人群", - "data": { - "belongToProject": 0, - "dataCount": 122, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805652055, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021081904543901", - "type": "appliedCrowdTag", - "typeZh": "适用人群" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "appliedCrowdTag", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_appliedCrowdTag_MKG.StandardTag", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "适用场景等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "适用场景等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021062902346331", - "source": "combo-2021042001647754", - "target": "2021062202192857", - "data": { - "belongToProject": 0, - "dataCount": 3041, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062902346331, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021062202192857", - "type": "hasServiceCategory", - "typeZh": "关联服务类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasServiceCategory", - "virtual": true, - "spoLabel": "MKG.Intent_hasServiceCategory_MKG.ServiceCategory", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021042101658134", - "source": "combo-2021042001647754", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658134, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101657968", - "type": "relatedProduct", - "typeZh": "相关产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedProduct", - "virtual": true, - "spoLabel": "MKG.Intent_relatedProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021111505610252", - "source": "combo-2021042001647754", - "target": "combo-2021102005411229", - "data": { - "belongToProject": 0, - "dataCount": 3151, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111505610252, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021102005411227", - "type": "hasIntentedObject", - "typeZh": "行为对象" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasIntentedObject", - "virtual": true, - "spoLabel": "MKG.Intent_hasIntentedObject_CKG.Object", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021042101658131", - "source": "2021042101658086", - "target": "2021042001647724", - "label": "相关功能", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658131, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042001647724", - "type": "relatedFunction", - "typeZh": "相关功能" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedFunction", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_relatedFunction_MKG.Function", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "relatedFunction", - "previousColorType": "#945FB9" - }, - "_label": "相关功能", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "相关功能", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021090904840437", - "source": "2021042001647738", - "target": "2021042101657968", - "label": "账单产品等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021090904840437, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.PartnerID_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillProduct", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021072803815072", - "source": "2021042001647738", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072803815072, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.PartnerID_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单产品等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021060101943960", - "source": "2021042001647738", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 54374330, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101943960, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.PartnerID_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021071903461376", - "source": "2021042001647738", - "target": "2021052601883401", - "label": "同ID", - "data": { - "belongToProject": 0, - "dataCount": 398565726, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071903461376, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021052601883401", - "type": "sameID", - "typeZh": "同ID" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameID", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.PartnerID_sameID_MKG.User", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameID", - "previousColorType": "#945FB9" - }, - "_label": "同ID", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同ID", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "2021081904553550", - "source": "2021081904543901", - "target": "2021081904543901", - "label": "继承", - "data": { - "belongToProject": 0, - "dataCount": 29, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021081904553550, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021081904543901", - "target": "2021081904543901", - "type": "isA", - "typeZh": "继承" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.StandardTag_isA_MKG.StandardTag", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "继承", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "继承", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021081904549515", - "source": "combo-2021042001647754", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021081904549515, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647754", - "target": "2021042001647754", - "type": "isA", - "typeZh": "继承" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": true, - "spoLabel": "MKG.Terminology_isA_MKG.Terminology", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 25 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021051801818436", - "source": "2021042001647723", - "target": "2021042001647723", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818436, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647723", - "target": "2021042001647723", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Category_isA_MKG.Category", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021111805652057", - "source": "2021042001647722", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 1, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805652057, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647722", - "target": "2021042101658086", - "type": "commonIntent", - "typeZh": "常用意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "commonIntent", - "virtual": true, - "spoLabel": "MKG.Brand_commonIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021121405955339", - "source": "2021042001647722", - "target": "2021042001647722", - "label": "继承等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021121405955339, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647722", - "target": "2021042001647722", - "type": "isA", - "typeZh": "继承" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Brand_isA_MKG.Brand", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021051801818435", - "source": "2021042001647722", - "target": "2021042001647722", - "label": "子品牌", - "data": { - "belongToProject": 0, - "dataCount": 2, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818435, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647722", - "target": "2021042001647722", - "type": "hasSubBrand", - "typeZh": "子品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasSubBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Brand_hasSubBrand_MKG.Brand", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "继承等2种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "继承等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883525", - "source": "2021042001647721", - "target": "706000077", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883525, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647721", - "target": "706000077", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.AOI_locatedAt_Province", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883524", - "source": "2021042001647721", - "target": "706000076", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883524, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647721", - "target": "706000076", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.AOI_locatedAt_District", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883526", - "source": "2021042001647721", - "target": "706000078", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883526, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647721", - "target": "706000078", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.AOI_locatedAt_City", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021062202193071", - "source": "2021062202192858", - "target": "2021062202192858", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 659, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202193071, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021062202192858", - "target": "2021062202192858", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.ShopCategory_isA_MKG.ShopCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021082504630460", - "source": "2021053101941871", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630460, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.DamaiShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021052601883532", - "source": "2021042001647739", - "target": "706000078", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883532, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "706000078", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_City", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021042101658010", - "source": "2021042001647739", - "target": "2021042001647721", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 47519797, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658010, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "2021042001647721", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_MKG.AOI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883531", - "source": "2021042001647739", - "target": "706000077", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883531, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "706000077", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_Province", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883530", - "source": "2021042001647739", - "target": "706000076", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883530, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "706000076", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_District", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021062202193070", - "source": "2021062202192857", - "target": "2021062202192857", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 478, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202193070, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021062202192857", - "target": "2021062202192857", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.ServiceCategory_isA_MKG.ServiceCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "310004620", - "source": "706000077", - "target": "706000078", - "label": "省会等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 28, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310004620, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000077", - "target": "706000078", - "type": "chiefCityInProvince", - "typeZh": "省会" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "chiefCityInProvince", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "Province_chiefCityInProvince_City", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "chiefCityInProvince", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "310001766", - "source": "706000077", - "target": "706000078", - "label": "包括", - "data": { - "belongToProject": 0, - "dataCount": 362, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001766, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000077", - "target": "706000078", - "type": "include", - "typeZh": "包括" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "include", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "Province_include_City", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "省会等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "省会等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "310004629", - "source": "706000077", - "target": "707000062", - "label": "属于国家", - "data": { - "belongToProject": 0, - "dataCount": 34, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310004629, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000077", - "target": "707000062", - "type": "belongToCountry", - "typeZh": "属于国家" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "belongToCountry", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "Province_belongToCountry_Country", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "belongToCountry", - "previousColorType": "#1E9493" - }, - "_label": "属于国家", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "属于国家", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "310001763", - "source": "706000078", - "target": "706000077", - "label": "属于", - "data": { - "belongToProject": 0, - "dataCount": 362, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001763, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000078", - "target": "706000077", - "type": "belongto", - "typeZh": "属于" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "belongto", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "City_belongto_Province", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "belongto", - "previousColorType": "#1E9493" - }, - "_label": "属于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "属于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "310001764", - "source": "706000078", - "target": "706000076", - "label": "包括", - "data": { - "belongToProject": 0, - "dataCount": 3140, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001764, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000078", - "target": "706000076", - "type": "include", - "typeZh": "包括" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "include", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "City_include_District", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "include", - "previousColorType": "#5B8FF9" - }, - "_label": "包括", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包括", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "310001765", - "source": "706000076", - "target": "706000078", - "label": "属于", - "data": { - "belongToProject": 0, - "dataCount": 3170, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001765, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000076", - "target": "706000078", - "type": "belongto", - "typeZh": "属于" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "belongto", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "District_belongto_City", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "belongto", - "previousColorType": "#1E9493" - }, - "_label": "属于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "属于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "2021071403193211", - "source": "2021071403192966", - "target": "2021071403192966", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403193211, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021071403192966", - "target": "2021071403192966", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.ProductCategory_isA_MKG.ProductCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021070102460197", - "source": "2021052601883401", - "target": "combo-2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460197, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941871", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": true, - "spoLabel": "MKG.User_consumeFromPID_MKG.DamaiShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021060201953756", - "source": "2021052601883401", - "target": "2021053101941871", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953756, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941871", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.DamaiShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953776", - "source": "2021052601883401", - "target": "2021053101941871", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 288544, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953776, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941871", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.DamaiShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021070102460193", - "source": "2021052601883401", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 2420739, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460193, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657967", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": true, - "spoLabel": "MKG.User_consumeFromPID_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021060201953750", - "source": "2021052601883401", - "target": "2021042101657967", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 1187001669, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953750, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657967", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.AppService", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953770", - "source": "2021052601883401", - "target": "2021042101657967", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 1025825820, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953770, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657967", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.AppService", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021071503245934", - "source": "2021052601883401", - "target": "2021070602724516", - "label": "购买电影票", - "data": { - "belongToProject": 0, - "dataCount": 7263633, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071503245934, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021070602724516", - "type": "buyMovieTicket", - "typeZh": "购买电影票" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "buyMovieTicket", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_buyMovieTicket_MKG.Film", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "buyMovieTicket", - "previousColorType": "#5B8FF9" - }, - "_label": "购买电影票", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "购买电影票", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021112205696683", - "source": "2021052601883401", - "target": "2021112205696328", - "label": "同人", - "data": { - "belongToProject": 0, - "dataCount": 850927359, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021112205696683, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021112205696328", - "type": "isThePerson", - "typeZh": "同人" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isThePerson", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_isThePerson_MKG.Person", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "isThePerson", - "previousColorType": "#5B8FF9" - }, - "_label": "同人", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同人", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021060201953754", - "source": "2021052601883401", - "target": "2021053101941854", - "label": "点击等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 260424402, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953754, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941854", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.Benefit", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "click", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021060201953786", - "source": "2021052601883401", - "target": "2021053101941854", - "label": "核销", - "data": { - "belongToProject": 0, - "dataCount": 8020408, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953786, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941854", - "type": "use", - "typeZh": "核销" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "use", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_use_MKG.Benefit", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "点击等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "点击等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021072003521632", - "source": "2021052601883401", - "target": "2021052601883401", - "label": "同事等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072003521632, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021052601883401", - "type": "workmate", - "typeZh": "同事" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "workmate", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.User_workmate_MKG.User", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "workmate", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021072003521630", - "source": "2021052601883401", - "target": "2021052601883401", - "label": "夫妻", - "data": { - "belongToProject": 0, - "dataCount": 321419640, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072003521630, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021052601883401", - "type": "couple", - "typeZh": "夫妻" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "couple", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.User_couple_MKG.User", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "同事等2种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "同事等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021061502070813", - "source": "2021052601883401", - "target": "2021061502070640", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061502070813, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021061502070640", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.TaobaoItem", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021060201953768", - "source": "2021052601883401", - "target": "2021042001647738", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 12530701969, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953768, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042001647738", - "type": "consume", - "typeZh": "消费" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.PartnerID", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "combo-2021060201953772", - "source": "2021052601883401", - "target": "combo-2021042001647734", - "data": { - "belongToProject": 0, - "dataCount": 2296386422, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953772, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021051301783085", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": true, - "spoLabel": "MKG.User_consume_MKG.IndirectMerchant", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021060201954721", - "source": "2021052601883401", - "target": "2021042101657968", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 5848965248, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201954721, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657968", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.Product", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021060201953766", - "source": "2021052601883401", - "target": "2021042001647722", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953766, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042001647722", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "combo-2021071603289707", - "source": "2021052601883401", - "target": "combo-2021071603289464", - "data": { - "belongToProject": 0, - "dataCount": 898099196, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603289707, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021071603289465", - "type": "connect", - "typeZh": "连接" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "connect", - "virtual": true, - "spoLabel": "MKG.User_connect_MKG.WiFi", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021061102039378", - "source": "2021052601883401", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 11215809662, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061102039378, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101658086", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": true, - "spoLabel": "MKG.User_consume_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021102005411230", - "source": "2021102005411227", - "target": "2021102005411227", - "label": "上下位等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 112, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021102005411230, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021102005411227", - "target": "2021102005411227", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "CKG.Object_isA_CKG.Object", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021111805658031", - "source": "2021102005411227", - "target": "2021102005411227", - "label": "从属于", - "data": { - "belongToProject": 0, - "dataCount": 2065, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805658031, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021102005411227", - "target": "2021102005411227", - "type": "isKindOf", - "typeZh": "从属于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isKindOf", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "CKG.Object_isKindOf_CKG.Object", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021111805658032", - "source": "2021102005411227", - "target": "2021102005411227", - "label": "相关对象", - "data": { - "belongToProject": 0, - "dataCount": 706, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805658032, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021102005411227", - "target": "2021102005411227", - "type": "modifiedBy", - "typeZh": "相关对象" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "modifiedBy", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "CKG.Object_modifiedBy_CKG.Object", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "上下位等3种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021070602724757", - "source": "2021070602724516", - "target": "2021070602724529", - "label": "电影导演等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070602724757, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021070602724516", - "target": "2021070602724529", - "type": "filmDirector", - "typeZh": "电影导演" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "filmDirector", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Film_filmDirector_MKG.FilmPerson", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "filmDirector", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021070602724755", - "source": "2021070602724516", - "target": "2021070602724529", - "label": "电影演员", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070602724755, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021070602724516", - "target": "2021070602724529", - "type": "filmActor", - "typeZh": "电影演员" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "filmActor", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Film_filmActor_MKG.FilmPerson", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "电影导演等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "电影导演等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "combo-2021070802876473", - "source": "2021070602724516", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 1264259, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802876473, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021070602724516", - "target": "2021070802876233", - "type": "filmType", - "typeZh": "电影所属类型" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "filmType", - "virtual": true, - "spoLabel": "MKG.Film_filmType_MKG.FilmType", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021062202185304", - "source": "2021052601883399", - "target": "2021042101658086", - "label": "包含意图", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202185304, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883399", - "target": "2021042101658086", - "type": "includeIntent", - "typeZh": "包含意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "includeIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Scene_includeIntent_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "includeIntent", - "previousColorType": "#1E9493" - }, - "_label": "包含意图", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包含意图", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021082504630461", - "source": "2021053101941872", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630461, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.EleShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "combo-2022011206141208", - "source": "2021053101941854", - "target": "combo-2021102005411229", - "data": { - "belongToProject": 0, - "dataCount": 30401, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2022011206141208, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021102005411227", - "type": "hasBenefitObject", - "typeZh": "券商品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitObject", - "virtual": true, - "spoLabel": "MKG.Benefit_hasBenefitObject_CKG.Object", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021123006094860", - "source": "2021053101941854", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 33053, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021123006094860, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021042101658086", - "type": "hasBenefitIntent", - "typeZh": "券意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitIntent", - "virtual": true, - "spoLabel": "MKG.Benefit_hasBenefitIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021123006094859", - "source": "2021053101941854", - "target": "2021071403192966", - "label": "券品类", - "data": { - "belongToProject": 0, - "dataCount": 37404, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021123006094859, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021071403192966", - "type": "hasBenefitGoods", - "typeZh": "券品类" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitGoods", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Benefit_hasBenefitGoods_MKG.ProductCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "hasBenefitGoods", - "previousColorType": "#FF9845" - }, - "_label": "券品类", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "券品类", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021123006094858", - "source": "2021053101941854", - "target": "2021042001647722", - "label": "券品牌", - "data": { - "belongToProject": 0, - "dataCount": 65230, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021123006094858, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021042001647722", - "type": "hasBenefitBrand", - "typeZh": "券品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Benefit_hasBenefitBrand_MKG.Brand", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBenefitBrand", - "previousColorType": "#5B8FF9" - }, - "_label": "券品牌", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "券品牌", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021051801818438", - "source": "2021051801807030", - "target": "2021051801807030", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 253, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818438, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051801807030", - "target": "2021051801807030", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MCC2_isA_MKG.MCC2", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021082504630462", - "source": "2021053101941873", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630462, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.FliggyShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - } - ], - "combos": [ - { - "id": "combo-706000074", - "label": "地点", - "x": 593.6126535403821, - "y": 602.5535679166017, - "children": [ - { - "id": "2021042001647731", - "comboId": "combo-706000074", - "itemType": "node", - "depth": 12 - }, - { - "id": "706000075", - "comboId": "combo-706000074", - "itemType": "node", - "depth": 12 - } - ], - "depth": 10, - "style": { - "opacity": 0.6, - "r": 39.395431207184416, - "width": 32, - "height": 72 - }, - "type": "combo" - }, - { - "id": "combo-2021102005411229", - "label": "2021102005411229", - "x": 989.9382601878009, - "y": 13.851915530302868, - "children": [ - { - "id": "2021102005411227", - "comboId": "combo-2021102005411229", - "itemType": "node", - "depth": 24 - } - ], - "depth": 22, - "style": { - "opacity": 0.6, - "r": 22.627416997969522, - "width": 32, - "height": 32 - }, - "type": "combo" - }, - { - "id": "combo-2021071603289464", - "label": "介质", - "x": 525.4768906809878, - "y": 308.37267160797273, - "children": [ - { - "id": "2021071603289465", - "comboId": "combo-2021071603289464", - "itemType": "node", - "depth": 35 - } - ], - "depth": 33, - "style": { - "opacity": 0.6, - "r": 22.627416997969522, - "width": 32, - "height": 32 - }, - "type": "combo" - }, - { - "id": "combo-2021061602092722", - "label": "支付事件", - "x": 381.91257741983316, - "y": 239.26983604635677, - "children": [ - { - "id": "2021052601883396", - "comboId": "combo-2021061602092722", - "itemType": "node", - "depth": 46 - }, - { - "id": "2021061602092727", - "comboId": "combo-2021061602092722", - "itemType": "node", - "depth": 46 - } - ], - "depth": 44, - "style": { - "opacity": 0.6, - "r": 39.3954312071844, - "width": 32, - "height": 71.99999999999997 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647749", - "label": "门店", - "x": 896.6864021614936, - "y": -96.63233617467718, - "children": [ - { - "id": "2021053101941874", - "comboId": "combo-2021042001647749", - "itemType": "node", - "depth": 58 - }, - { - "id": "2021053101941875", - "comboId": "combo-2021042001647749", - "itemType": "node", - "depth": 58 - }, - { - "id": "2021053101941871", - "comboId": "combo-2021042001647749", - "itemType": "node", - "depth": 58 - }, - { - "id": "2021053101941872", - "comboId": "combo-2021042001647749", - "itemType": "node", - "depth": 58 - }, - { - "id": "2021053101941873", - "comboId": "combo-2021042001647749", - "itemType": "node", - "depth": 58 - }, - { - "id": "2021053101936949", - "comboId": "combo-2021042001647749", - "itemType": "node", - "depth": 58 - } - ], - "depth": 56, - "style": { - "opacity": 0.6, - "r": 75.50173850213042, - "width": 101.28203230275517, - "height": 111.99999999999997 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647740", - "label": "服务", - "x": 618.0929591722611, - "y": -81.72500758813828, - "children": [ - { - "id": "2021042101657969", - "comboId": "combo-2021042001647740", - "itemType": "node", - "depth": 74 - }, - { - "id": "2021042101657967", - "comboId": "combo-2021042001647740", - "itemType": "node", - "depth": 74 - } - ], - "depth": 72, - "style": { - "opacity": 0.6, - "r": 39.395431207184416, - "width": 32, - "height": 72 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647734", - "label": "商户", - "x": 531.6102995537426, - "y": -24.910279050707658, - "children": [ - { - "id": "2021051301783085", - "comboId": "combo-2021042001647734", - "itemType": "node", - "depth": 86 - }, - { - "id": "2021051301783084", - "comboId": "combo-2021042001647734", - "itemType": "node", - "depth": 86 - } - ], - "depth": 84, - "style": { - "opacity": 0.6, - "r": 39.395431207184416, - "width": 32, - "height": 72 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647754", - "label": "标准领域术语", - "x": 630.8761465955029, - "y": 399.193802522855, - "children": [ - { - "id": "2021061702105197", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021042001647724", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021042101658086", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021081904543901", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021042001647723", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021070802876233", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021052601883395", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021052601883399", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - }, - { - "id": "2021051801807030", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 98 - } - ], - "depth": 96, - "style": { - "opacity": 0.6, - "r": 103.45194165596362, - "width": 147.17540966287265, - "height": 145.4256363923542 - }, - "type": "combo" - } - ] - } - const afterData = { - "nodes": [ - { - "id": "2021052601883396", - "label": "履约事件", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883396", - "myDraft": true, - "name": "MKG.PaymentEvents", - "nameZh": "履约事件", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 381.91257741983316, - "y": 259.2698360463568, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.PaymentEvents", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021052601883396", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021061602092722", - "fx": 381.91257741983316, - "fy": 259.2698360463568, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 46 - }, - { - "id": "2021042101657968", - "label": "产品", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2050102, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042101657968", - "myDraft": true, - "name": "MKG.Product", - "nameZh": "产品", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 792.7788347245463, - "y": 19.878606549639855, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Product", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021042101657968", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 792.7788347245463, - "fy": 19.878606549639855, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647731", - "label": "兴趣地址", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647731", - "myDraft": true, - "name": "MKG.InterestPlace", - "nameZh": "兴趣地址", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 593.6126535403821, - "y": 602.5535679166017, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.InterestPlace", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021042001647731", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-706000074", - "fx": 593.6126535403821, - "fy": 622.5535679166017, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 12 - }, - { - "id": "2021061602092727", - "label": "热点事件", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021061602092727", - "myDraft": true, - "name": "MKG.HotEvent", - "nameZh": "热点事件", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 381.91257741983316, - "y": 219.26983604635677, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.HotEvent", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021061602092727", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021061602092722", - "fx": 381.91257741983316, - "fy": 219.2698360463568, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 45 - }, - { - "id": "2021061702105197", - "label": "主题", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 10908, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021061702105197", - "myDraft": true, - "name": "MKG.Topic", - "nameZh": "主题", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 688.4638514269392, - "y": 389.03953640399754, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Topic", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021061702105197", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 688.4638514269392, - "fy": 390.80280621108216, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 89 - }, - { - "id": "2021042101657969", - "label": "标准化服务", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 1113, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042101657969", - "myDraft": true, - "name": "MKG.StandService", - "nameZh": "标准化服务", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 618.0929591722611, - "y": -101.72500758813828, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.StandService", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021042101657969", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647740", - "fx": 618.0929591722611, - "fy": -101.72500758813828, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 58 - }, - { - "id": "2021053101941874", - "label": "口碑门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 15047828, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941874", - "myDraft": true, - "name": "MKG.KoubeiShop", - "nameZh": "口碑门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 925.1644530406539, - "y": -41.622047720075294, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.KoubeiShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#FF99C3", - "typeId": "2021053101941874", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647724", - "label": "功能", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647724", - "myDraft": true, - "name": "MKG.Function", - "nameZh": "功能", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 573.2884417640665, - "y": 389.03953640399754, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Function", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#1E9493", - "typeId": "2021042001647724", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 573.2884417640665, - "fy": 390.80280621108216, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 88 - }, - { - "id": "2021051301783085", - "label": "间连商户", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 434352936, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021051301783085", - "myDraft": true, - "name": "MKG.IndirectMerchant", - "nameZh": "间连商户", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 531.6102995537426, - "y": -44.91027905070766, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.IndirectMerchant", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021051301783085", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647734", - "fx": 531.6102995537426, - "fy": -44.91027905070766, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 70 - }, - { - "id": "2021042101657967", - "label": "应用服务", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2861727, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042101657967", - "myDraft": true, - "name": "MKG.AppService", - "nameZh": "应用服务", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 618.0929591722611, - "y": -61.72500758813828, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.AppService", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021042101657967", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647740", - "fx": 618.0929591722611, - "fy": -61.72500758813828, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 57 - }, - { - "id": "2021053101941875", - "label": "淘票票门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 11252, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941875", - "myDraft": true, - "name": "MKG.TaopiaopiaoShop", - "nameZh": "淘票票门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 846.354950132702, - "y": -64.37603096566971, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.TaopiaopiaoShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#9FB40F", - "typeId": "2021053101941875", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042101658086", - "label": "意图", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 3753, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "2021042101658086", - "myDraft": true, - "name": "MKG.Intent", - "nameZh": "意图", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "通用实体链指算子", - "iGood": 0, - "id": 19000090, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "EntityLinker", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000051&operatorId=19000090", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 580.2343688707438, - "y": 428.4318465244858, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Intent", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021042101658086", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 580.2343688707438, - "fy": 430.19511633157043, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 87 - }, - { - "id": "2021070602724529", - "label": "电影人", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 1070011, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021070602724529", - "myDraft": true, - "name": "MKG.FilmPerson", - "nameZh": "电影人", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 566.452124266952, - "y": 150.03537923925575, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.FilmPerson", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021070602724529", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 566.452124266952, - "fy": 150.03537923925575, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647738", - "label": "PID", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 422017951, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647738", - "myDraft": true, - "name": "MKG.PartnerID", - "nameZh": "PID", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 773.1316623653236, - "y": 106.8688994694984, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.PartnerID", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#FF9845", - "typeId": "2021042001647738", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 773.1316623653236, - "fy": 106.8688994694984, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021081904543901", - "label": "标准标签", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 754, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021081904543901", - "myDraft": true, - "name": "MKG.StandardTag", - "nameZh": "标准标签", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 630.8761465955029, - "y": 340.71771451959324, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.StandardTag", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021081904543901", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 630.8761465955029, - "fy": 342.48098432667786, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 86 - }, - { - "id": "2021042001647723", - "label": "类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647723", - "myDraft": true, - "name": "MKG.Category", - "nameZh": "类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 593.2884417640664, - "y": 354.39852025262, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Category", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021042001647723", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 593.2884417640664, - "fy": 356.16179005970463, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 85 - }, - { - "id": "2021042001647722", - "label": "品牌", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 118351, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647722", - "myDraft": true, - "name": "MKG.Brand", - "nameZh": "品牌", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 852.9593666933196, - "y": 138.48121147646864, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Brand", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021042001647722", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 852.9593666933196, - "fy": 138.48121147646864, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647721", - "label": "兴趣区域", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 1130850, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647721", - "myDraft": true, - "name": "MKG.AOI", - "nameZh": "兴趣区域", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 797.4123358994632, - "y": 319.43911475158654, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.AOI", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021042001647721", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 797.4123358994632, - "fy": 319.43911475158654, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "707000062", - "label": "国家", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 305000054, - "dataCount": 237, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "707000062", - "myDraft": true, - "name": "Country", - "nameZh": "国家", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 898.3590208232861, - "y": 451.39645597240366, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "Country", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "707000062", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 898.3590208232861, - "fy": 451.39645597240366, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021062202192858", - "label": "标准门店类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 517, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021062202192858", - "myDraft": true, - "name": "MKG.ShopCategory", - "nameZh": "标准门店类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 1164.1295882222082, - "y": -59.288268428035494, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.ShopCategory", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021062202192858", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 1164.1295882222082, - "fy": -59.288268428035494, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021053101941871", - "label": "大麦门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2732, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941871", - "myDraft": true, - "name": "MKG.DamaiShop", - "nameZh": "大麦门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 846.7810495870285, - "y": 10.346702203520884, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.DamaiShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021053101941871", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647739", - "label": "兴趣地点", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 87543183, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647739", - "myDraft": true, - "name": "MKG.POI", - "nameZh": "兴趣地点", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 696.8074715181524, - "y": 297.4166294633568, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.POI", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021042001647739", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 696.8074715181524, - "fy": 297.4166294633568, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021062202192857", - "label": "应用服务类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 474, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021062202192857", - "myDraft": true, - "name": "MKG.ServiceCategory", - "nameZh": "应用服务类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 444.0324704728855, - "y": 123.16478751502784, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.ServiceCategory", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021062202192857", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 444.0324704728855, - "fy": 123.16478751502784, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021042001647749", - "label": "门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021042001647749", - "myDraft": true, - "name": "MKG.Shop", - "nameZh": "门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "" - }, - "x": 371.5578947368421, - "y": 300, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Shop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021042001647749", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "style": {}, - "depth": 0 - }, - { - "id": "2021061502070640", - "label": "淘宝商品", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021061502070640", - "myDraft": true, - "name": "MKG.TaobaoItem", - "nameZh": "淘宝商品", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 690.2997394372172, - "y": 102.10355030750456, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.TaobaoItem", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021061502070640", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 690.2997394372172, - "fy": 102.10355030750456, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "706000077", - "label": "省", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 34, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "706000077", - "myDraft": true, - "name": "Province", - "nameZh": "省", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "省级行政区链指算子", - "iGood": 0, - "id": 19000025, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "province-link-operator", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000035&operatorId=19000025", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 796.1009333159872, - "y": 415.4268861284187, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "Province", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "706000077", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 796.1009333159872, - "fy": 415.4268861284187, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "706000078", - "label": "市", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 362, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "706000078", - "myDraft": true, - "name": "City", - "nameZh": "市", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "城市链指算子", - "iGood": 0, - "id": 19000033, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "city-link-operator", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000039&operatorId=19000033", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 710.9570240453364, - "y": 462.4587155307034, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "City", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "706000078", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 710.9570240453364, - "fy": 462.4587155307034, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "706000076", - "label": "区县", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 3140, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": true, - "iCopyEdge": false, - "id": "706000076", - "myDraft": true, - "name": "District", - "nameZh": "区县", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [ - { - "desc": "区县行政区链指算子", - "iGood": 0, - "id": 19000035, - "jarAddress": "", - "lang": "", - "mainClass": "", - "name": "district-link-operator", - "overviewId": 0, - "params": "", - "script": "", - "transformerEnumCode": "ENTITY_LINK", - "url": "https://akg.alipay.com/v2/knowledgeBuild/operator/detail?algorithmOverviewId=23000041&operatorId=19000035", - "version": 1 - } - ], - "unableEditReason": "", - "fixed": true - }, - "x": 790.7605381205339, - "y": 501.22153459800006, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "District", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "706000076", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 790.7605381205339, - "fy": 501.22153459800006, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021071403192966", - "label": "品类", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 19892, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021071403192966", - "myDraft": true, - "name": "MKG.ProductCategory", - "nameZh": "品类", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 935.1403292647856, - "y": 96.22709173176509, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.ProductCategory", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5D7092", - "typeId": "2021071403192966", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 935.1403292647856, - "fy": 96.22709173176509, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021112205696328", - "label": "自然人", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 921776978, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021112205696328", - "myDraft": true, - "name": "MKG.Person", - "nameZh": "自然人", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 813.2778816168102, - "y": 227.874854202066, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Person", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021112205696328", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 813.2778816168102, - "fy": 227.874854202066, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021070802876233", - "label": "电影类型", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 69, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021070802876233", - "myDraft": true, - "name": "MKG.FilmType", - "nameZh": "电影类型", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 668.4638514269392, - "y": 354.39852025261996, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.FilmType", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#1E9493", - "typeId": "2021070802876233", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 668.4638514269392, - "fy": 356.1617900597046, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 84 - }, - { - "id": "2021052601883401", - "label": "用户", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 951741873, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883401", - "myDraft": true, - "name": "MKG.User", - "nameZh": "用户", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 723.7563540434256, - "y": 181.87256138619017, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.User", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#76523B", - "typeId": "2021052601883401", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 723.7563540434256, - "fy": 181.87256138619017, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021102005411227", - "label": "对象概念", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 335000009, - "dataCount": 66489, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021102005411227", - "myDraft": true, - "name": "CKG.Object", - "nameZh": "对象概念", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 989.9382601878009, - "y": 13.851915530302868, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "CKG.Object", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#945FB9", - "typeId": "2021102005411227", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021102005411229", - "fx": 989.9382601878009, - "fy": 13.851915530302866, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 23 - }, - { - "id": "706000075", - "label": "行政区域", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 304000010, - "dataCount": 1, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "706000075", - "myDraft": true, - "name": "AdministractiveArea", - "nameZh": "行政区域", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 593.6126535403821, - "y": 562.5535679166017, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "AdministractiveArea", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#FF9845", - "typeId": "706000075", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-706000074", - "fx": 593.6126535403821, - "fy": 582.5535679166017, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 11 - }, - { - "id": "2021052601883395", - "label": "物品", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883395", - "myDraft": true, - "name": "MKG.Item", - "nameZh": "物品", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 650.8761465955029, - "y": 454.14335091194744, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Item", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021052601883395", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 650.8761465955029, - "fy": 455.90662071903205, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 83 - }, - { - "id": "2021070602724516", - "label": "电影", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 941924, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021070602724516", - "myDraft": true, - "name": "MKG.Film", - "nameZh": "电影", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 615.8351101619025, - "y": 70.70915944258564, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Film", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5B8FF9", - "typeId": "2021070602724516", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 615.8351101619025, - "fy": 70.70915944258564, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021051301783084", - "label": "直连商户", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 386098230, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021051301783084", - "myDraft": true, - "name": "MKG.DirectMerchant", - "nameZh": "直连商户", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 531.6102995537426, - "y": -4.910279050707658, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.DirectMerchant", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021051301783084", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647734", - "fx": 531.6102995537426, - "fy": -4.910279050707661, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 69 - }, - { - "id": "2021052601883399", - "label": "场景", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 0, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021052601883399", - "myDraft": true, - "name": "MKG.Scene", - "nameZh": "场景", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 681.517924320262, - "y": 428.4318465244858, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Scene", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#6DC8EC", - "typeId": "2021052601883399", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 681.517924320262, - "fy": 430.19511633157043, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 82 - }, - { - "id": "2021053101941872", - "label": "饿了么门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2884298, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941872", - "myDraft": true, - "name": "MKG.EleShop", - "nameZh": "饿了么门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 859.8977855651458, - "y": 84.23115244126737, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.EleShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#945FB9", - "typeId": "2021053101941872", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021053101941854", - "label": "消费券", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 2072786, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941854", - "myDraft": true, - "name": "MKG.Benefit", - "nameZh": "消费券", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 942.2551037778328, - "y": 221.30533160844095, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.Benefit", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#F6BD16", - "typeId": "2021053101941854", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "fx": 942.2551037778328, - "fy": 221.30533160844095, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021051801807030", - "label": "行业类目", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 239, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021051801807030", - "myDraft": true, - "name": "MKG.MCC2", - "nameZh": "行业类目", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 610.8761465955029, - "y": 454.14335091194744, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.MCC2", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021051801807030", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021042001647754", - "fx": 610.8761465955029, - "fy": 455.90662071903205, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 81 - }, - { - "id": "2021053101941873", - "label": "飞猪门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 922861, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101941873", - "myDraft": true, - "name": "MKG.FliggyShop", - "nameZh": "飞猪门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 914.7482266056938, - "y": 37.11804425744911, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.FliggyShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#E86452", - "typeId": "2021053101941873", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021053101936949", - "label": "蚂蚁门店", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 114566354, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021053101936949", - "myDraft": true, - "name": "MKG.MifShop", - "nameZh": "蚂蚁门店", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 772.5387763825951, - "y": -59.424255914602746, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.MifShop", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#1E9493", - "typeId": "2021053101936949", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false - }, - { - "id": "2021071603289465", - "label": "WiFi", - "type": "BaseNode", - "data": { - "ableEdit": false, - "belongToProject": 317000082, - "dataCount": 470057729, - "deepInherit": false, - "description": "", - "descriptionZh": "", - "fuseConfig": null, - "hasLinkOperator": false, - "iCopyEdge": false, - "id": "2021071603289465", - "myDraft": true, - "name": "MKG.WiFi", - "nameZh": "WiFi", - "operation": "", - "priority": "", - "projectIds": [], - "propertyCount": 0, - "scope": "PRIVATE", - "status": 0, - "subTypeCount": 0, - "transformerDetailList": [], - "unableEditReason": "", - "fixed": true - }, - "x": 525.4768906809878, - "y": 308.37267160797273, - "disabled": false, - "accessible": true, - "custom": { - "desc": "", - "typeName": "MKG.WiFi", - "coreNode": false, - "virtual": false, - "icon": "", - "labels": [], - "colorType": "#5AD8A6", - "typeId": "2021071603289465", - "operation": "", - "isConceptNode": false, - "isMetaConceptNode": false - }, - "comboId": "combo-2021071603289464", - "fx": 525.4768906809878, - "fy": 308.37267160797273, - "zoomLevel": 3, - "anchorPoints": [], - "isAdded": false, - "depth": 34 - } - ], - "edges": [ - { - "id": "combo-2021052601883533", - "source": "combo-2021061602092722", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883533, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021052601883399", - "type": "relatedScene", - "typeZh": "关联场景" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedScene", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_relatedScene_MKG.Scene", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883519", - "source": "combo-2021061602092722", - "target": "combo-2021042001647734", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883519, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021042001647734", - "type": "hasSeller", - "typeZh": "履约方" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasSeller", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_hasSeller_MKG.Merchant", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883509", - "source": "combo-2021061602092722", - "target": "2021052601883401", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883509, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021052601883401", - "type": "hasBuyer", - "typeZh": "支付方" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBuyer", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_hasBuyer_MKG.User", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883508", - "source": "combo-2021061602092722", - "target": "2021042001647739", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883508, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021042001647739", - "type": "eventPOI", - "typeZh": "履约POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "eventPOI", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_eventPOI_MKG.POI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883520", - "source": "combo-2021061602092722", - "target": "2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883520, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883396", - "target": "2021042001647749", - "type": "hasSeller", - "typeZh": "履约方" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasSeller", - "virtual": true, - "spoLabel": "MKG.PaymentEvents_hasSeller_MKG.Shop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021071403193210", - "source": "2021042101657968", - "target": "2021071403192966", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 1248145, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403193210, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657968", - "target": "2021071403192966", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Product_hasCategory_MKG.ProductCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "combo-2021052601883529", - "source": "combo-706000074", - "target": "706000078", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883529, - "logKey": "", - "operation": "", - "relationSource": 2021052601883406, - "source": "2021042001647731", - "target": "706000078", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": true, - "spoLabel": "MKG.InterestPlace_locatedAt_City", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883528", - "source": "combo-706000074", - "target": "706000077", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883528, - "logKey": "", - "operation": "", - "relationSource": 2021052601883405, - "source": "2021042001647731", - "target": "706000077", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": true, - "spoLabel": "MKG.InterestPlace_locatedAt_Province", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052601883527", - "source": "combo-706000074", - "target": "706000076", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883527, - "logKey": "", - "operation": "", - "relationSource": 2021052601883407, - "source": "2021042001647731", - "target": "706000076", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": true, - "spoLabel": "MKG.InterestPlace_locatedAt_District", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021062202185307", - "source": "combo-2021061602092722", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202185307, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061602092727", - "target": "2021042101657967", - "type": "relatedService", - "typeZh": "关联服务" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedService", - "virtual": true, - "spoLabel": "MKG.HotEvent_relatedService_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021061702105408", - "source": "2021061702105197", - "target": "2021052601883399", - "label": "包含场景", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061702105408, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021052601883399", - "type": "hasScene", - "typeZh": "包含场景" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasScene", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Topic_hasScene_MKG.Scene", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasScene", - "previousColorType": "#1E9493" - }, - "_label": "包含场景", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包含场景", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021070102463430", - "source": "2021061702105197", - "target": "2021061702105197", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 167, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102463430, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021061702105197", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Topic_isA_MKG.Topic", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021070202502382", - "source": "combo-2021042001647754", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 58051, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070202502382, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021042101657967", - "type": "relatedService", - "typeZh": "包含服务" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedService", - "virtual": true, - "spoLabel": "MKG.Topic_relatedService_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021062202185306", - "source": "2021061702105197", - "target": "2021042101658086", - "label": "包含意图", - "data": { - "belongToProject": 0, - "dataCount": 433, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202185306, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021061702105197", - "target": "2021042101658086", - "type": "includeIntent", - "typeZh": "包含意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "includeIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Topic_includeIntent_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "includeIntent", - "previousColorType": "#1E9493" - }, - "_label": "包含意图", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包含意图", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "combo-2021042101658013", - "source": "combo-2021042001647740", - "target": "2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658013, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657969", - "target": "2021042001647749", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.StandService_relatedShop_MKG.Shop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021042101658015", - "source": "2021042101657969", - "target": "2021042101657967", - "label": "关联应用", - "data": { - "belongToProject": 0, - "dataCount": 1089, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658015, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657969", - "target": "2021042101657967", - "type": "relatedTo", - "typeZh": "关联应用" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedTo", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.StandService_relatedTo_MKG.AppService", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "relatedTo", - "previousColorType": "#5B8FF9" - }, - "_label": "关联应用", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联应用", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "combo-2021042101658011", - "source": "combo-2021042001647740", - "target": "2021042001647722", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658011, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657969", - "target": "2021042001647722", - "type": "relatedBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedBrand", - "virtual": true, - "spoLabel": "MKG.StandService_relatedBrand_MKG.Brand", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021090104739405", - "source": "2021053101941874", - "target": "2021053101941873", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021090104739405, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021053101941873", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.FliggyShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021082504625426", - "source": "2021053101941874", - "target": "2021053101941872", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504625426, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021053101941872", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.EleShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021053101942007", - "source": "2021053101941874", - "target": "2021042101657968", - "label": "经营产品等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942007, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "hasProduct", - "previousColorType": "#666" - }, - "foldEdge": [ - { - "id": "2021071403197171", - "source": "2021053101941874", - "target": "2021042101657968", - "label": "账单产品", - "data": { - "belongToProject": 0, - "dataCount": 3534099, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197171, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "经营产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "经营产品等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 919.9302105920272, - "y": -105.40274775087758 - }, - "endPoint": { - "x": 804.1760424453903, - "y": 8.649018125840273 - } - }, - { - "id": "2021062102181056", - "source": "2021053101941874", - "target": "2021042001647721", - "label": "关联AOI", - "data": { - "belongToProject": 0, - "dataCount": 2465, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181056, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "relatedAOI", - "previousColorType": "#666" - }, - "_label": "关联AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 926.6304001129014, - "y": -101.33730364678914 - }, - "endPoint": { - "x": 802.109354099433, - "y": 304.14408222369855 - } - }, - { - "id": "combo-2021072603714645", - "source": "2021053101941874", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 1651874, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072603714645, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101657967", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021072003510176", - "source": "2021053101941874", - "target": "2021042101657967", - "label": "账单关联服务", - "data": { - "belongToProject": 0, - "dataCount": 286112, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072003510176, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101657967", - "type": "hasBillApp", - "typeZh": "账单关联服务" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillApp", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBillApp_MKG.AppService", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 915.4258560897388, - "y": -114.86024168965436 - }, - "endPoint": { - "x": 682.0922064364164, - "y": -88.8571818695706 - } - }, - { - "id": "combo-2021070802880015", - "source": "2021053101941874", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 13136779, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880015, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071403197155", - "source": "2021053101941874", - "target": "2021042101658086", - "label": "账单意图", - "data": { - "belongToProject": 0, - "dataCount": 4776538, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197155, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021071603299627", - "source": "2021053101941874", - "target": "2021042001647738", - "label": "账单pid等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299627, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "hasBillPID", - "previousColorType": "#666" - }, - "foldEdge": [ - { - "id": "2021060101944683", - "source": "2021053101941874", - "target": "2021042001647738", - "label": "拥有支付码", - "data": { - "belongToProject": 0, - "dataCount": 24078137, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101944683, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单pid等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单pid等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 922.0837179552097, - "y": -103.57270357273273 - }, - "endPoint": { - "x": 782.375362722985, - "y": 93.80926686755396 - } - }, - { - "id": "2021060201957790", - "source": "2021053101941874", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 13449741, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201957790, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#666" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 923.4419609607241, - "y": -102.71042673855918 - }, - "endPoint": { - "x": 704.6929288702994, - "y": 283.4947200272388 - } - }, - { - "id": "2021062302196802", - "source": "2021053101941874", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 15870280, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196802, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#666" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 946.8630534102912, - "y": -112.80558270472238 - }, - "endPoint": { - "x": 1148.5939531247882, - "y": -63.115021897990275 - } - }, - { - "id": "2021070202516587", - "source": "2021053101941874", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 1166051, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070202516587, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.KoubeiShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021071403197139", - "source": "2021053101941874", - "target": "2021042001647722", - "label": "账单品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197139, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": true, - "spoLabel": "MKG.KoubeiShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "hasBillBrand", - "previousColorType": "#666" - }, - "foldEdge": [ - { - "id": "2021053101941997", - "source": "2021053101941874", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 210469, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101941997, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941874", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.KoubeiShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 926.6290786805516, - "y": -101.33770951367705 - }, - "endPoint": { - "x": 857.6577063256391, - "y": 123.18658481546854 - } - }, - { - "id": "combo-2021071403197161", - "source": "combo-2021042001647734", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 17932653, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197161, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021052701910993", - "source": "2021051301783085", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910993, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071403197130", - "source": "combo-2021042001647734", - "target": "2021042001647722", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197130, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021052701910987", - "source": "2021051301783085", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910987, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071603299666", - "source": "combo-2021042001647734", - "target": "2021053101941875", - "data": { - "belongToProject": 0, - "dataCount": 3632, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299666, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941875", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021082604654478", - "source": "2021051301783085", - "target": "2021053101941875", - "label": "拥有门店", - "data": { - "belongToProject": 0, - "dataCount": 16733, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082604654478, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941875", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052701910995", - "source": "combo-2021042001647734", - "target": "2021042001647749", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910995, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647749", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.Shop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 503.15404638301584, - "y": 32.85660779498209 - }, - "endPoint": { - "x": 378.62827290182025, - "y": 285.64696016154767 - } - }, - { - "id": "combo-2021053101942015", - "source": "combo-2021042001647734", - "target": "2021053101941871", - "data": { - "belongToProject": 0, - "dataCount": 2318, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942015, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941871", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.DamaiShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071603299654", - "source": "2021051301783085", - "target": "2021053101941871", - "label": "账单门店", - "data": { - "belongToProject": 0, - "dataCount": 984, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299654, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941871", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.DamaiShop", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 595.2310689123979, - "y": -34.868655754368355 - }, - "endPoint": { - "x": 846.2378622362102, - "y": -74.15802977946208 - } - }, - { - "id": "combo-2021052701910997", - "source": "combo-2021042001647734", - "target": "2021042001647739", - "data": { - "belongToProject": 0, - "dataCount": 13853406, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910997, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021053101942018", - "source": "combo-2021042001647734", - "target": "2021053101941873", - "data": { - "belongToProject": 0, - "dataCount": 282450, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942018, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941873", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.FliggyShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071603299660", - "source": "2021051301783085", - "target": "2021053101941873", - "label": "账单门店", - "data": { - "belongToProject": 0, - "dataCount": 69013, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299660, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941873", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.FliggyShop", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 595.4733052587195, - "y": -33.173938209052814 - }, - "endPoint": { - "x": 915.4597073258589, - "y": -74.5791074897395 - } - }, - { - "id": "combo-2021053101942016", - "source": "combo-2021042001647734", - "target": "2021053101941872", - "data": { - "belongToProject": 0, - "dataCount": 2402268, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942016, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941872", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.EleShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071603299657", - "source": "2021051301783085", - "target": "2021053101941872", - "label": "账单门店", - "data": { - "belongToProject": 0, - "dataCount": 698358, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299657, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941872", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.EleShop", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 595.7640009785192, - "y": -30.484698649180828 - }, - "endPoint": { - "x": 880.7464635112822, - "y": -55.24728894533866 - } - }, - { - "id": "combo-2021053101942017", - "source": "combo-2021042001647734", - "target": "2021053101941874", - "data": { - "belongToProject": 0, - "dataCount": 8262869, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942017, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941874", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.KoubeiShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071603299663", - "source": "2021051301783085", - "target": "2021053101941874", - "label": "账单门店", - "data": { - "belongToProject": 0, - "dataCount": 1795266, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299663, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101941874", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.KoubeiShop", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 594.3744948890437, - "y": -39.312617203639206 - }, - "endPoint": { - "x": 915.7327230598206, - "y": -113.05386164431025 - } - }, - { - "id": "combo-2021071403197145", - "source": "combo-2021042001647734", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 44477509, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197145, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021052701910991", - "source": "combo-2021042001647734", - "target": "2021042001647738", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052701910991, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "关联pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021053101942020", - "source": "combo-2021042001647734", - "target": "2021053101936949", - "data": { - "belongToProject": 0, - "dataCount": 17874796, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942020, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101936949", - "type": "hasShop", - "typeZh": "拥有门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasShop", - "virtual": true, - "spoLabel": "MKG.IndirectMerchant_hasShop_MKG.MifShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071603299651", - "source": "2021051301783085", - "target": "2021053101936949", - "label": "账单门店", - "data": { - "belongToProject": 0, - "dataCount": 7663827, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299651, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051301783085", - "target": "2021053101936949", - "type": "hasBillShop", - "typeZh": "账单门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillShop", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.IndirectMerchant_hasBillShop_MKG.MifShop", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 593.6596199925871, - "y": -42.13390797834148 - }, - "endPoint": { - "x": 846.628312028154, - "y": -112.35287010579565 - } - }, - { - "id": "combo-2021060301966869", - "source": "combo-2021042001647740", - "target": "2021053101941875", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060301966869, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021053101941875", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.AppService_relatedShop_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 681.2730117661836, - "y": -94.17701604414272 - }, - "endPoint": { - "x": 880.9883810045209, - "y": -133.53844998490905 - } - }, - { - "id": "combo-2021062302196797", - "source": "combo-2021042001647740", - "target": "2021062202192857", - "data": { - "belongToProject": 0, - "dataCount": 1742664, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196797, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021062202192857", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": true, - "spoLabel": "MKG.AppService_hasCategory_MKG.ServiceCategory", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021060301966865", - "source": "combo-2021042001647740", - "target": "2021053101941871", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060301966865, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021053101941871", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.AppService_relatedShop_MKG.DamaiShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 682.4743633997891, - "y": -80.38100236089807 - }, - "endPoint": { - "x": 846.0488712212605, - "y": -76.96627420774443 - } - }, - { - "id": "combo-2021060301966864", - "source": "combo-2021042001647740", - "target": "2021053101936949", - "data": { - "belongToProject": 0, - "dataCount": 148539, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060301966864, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021053101936949", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.AppService_relatedShop_MKG.MifShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 681.8390974634009, - "y": -90.84648846166436 - }, - "endPoint": { - "x": 846.2067124654556, - "y": -114.36596896134398 - } - }, - { - "id": "combo-2021060301966867", - "source": "combo-2021042001647740", - "target": "2021053101941873", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060301966867, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021053101941873", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.AppService_relatedShop_MKG.FliggyShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 682.4798811307461, - "y": -80.67818330910347 - }, - "endPoint": { - "x": 915.3295325619201, - "y": -76.89243519335862 - } - }, - { - "id": "combo-2021060301966866", - "source": "combo-2021042001647740", - "target": "2021053101941872", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060301966866, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021053101941872", - "type": "relatedShop", - "typeZh": "相关门店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedShop", - "virtual": true, - "spoLabel": "MKG.AppService_relatedShop_MKG.EleShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 682.2287666056102, - "y": -75.94835066292758 - }, - "endPoint": { - "x": 880.7509095388571, - "y": -58.06763226743881 - } - }, - { - "id": "combo-2021071403175576", - "source": "combo-2021042001647740", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 1205208, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403175576, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": true, - "spoLabel": "MKG.AppService_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021063002408071", - "source": "combo-2021042001647740", - "target": "2021042001647738", - "data": { - "belongToProject": 0, - "dataCount": 892578, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021063002408071, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": true, - "spoLabel": "MKG.AppService_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021063002408072", - "source": "combo-2021042001647740", - "target": "2021042001647721", - "data": { - "belongToProject": 0, - "dataCount": 19633, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021063002408072, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101657967", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": true, - "spoLabel": "MKG.AppService_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021071403197157", - "source": "2021053101941875", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 6244, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197157, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": true, - "spoLabel": "MKG.TaopiaopiaoShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021070802880016", - "source": "2021053101941875", - "target": "2021042101658086", - "label": "关联意图", - "data": { - "belongToProject": 0, - "dataCount": 11252, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880016, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 889.5760199571024, - "y": -122.29907189512531 - }, - "endPoint": { - "x": 687.9600465998814, - "y": 284.1228258368235 - } - }, - { - "id": "2021060201957792", - "source": "2021053101941875", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 11619, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201957792, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 889.9939325944415, - "y": -122.09924114663576 - }, - "endPoint": { - "x": 703.4999410852045, - "y": 282.88353443531537 - } - }, - { - "id": "2021053101942009", - "source": "2021053101941875", - "target": "2021042101657968", - "label": "经营产品等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942009, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "hasProduct", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021071403197173", - "source": "2021053101941875", - "target": "2021042101657968", - "label": "账单产品", - "data": { - "belongToProject": 0, - "dataCount": 3719, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197173, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "经营产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "经营产品等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 887.836749844378, - "y": -123.30253295534304 - }, - "endPoint": { - "x": 801.6284870416619, - "y": 6.548803330305718 - } - }, - { - "id": "2021062102181058", - "source": "2021053101941875", - "target": "2021042001647721", - "label": "关联AOI", - "data": { - "belongToProject": 0, - "dataCount": 371, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181058, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "relatedAOI", - "previousColorType": "#1E9493" - }, - "_label": "关联AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 893.2833349707902, - "y": -120.99842643668909 - }, - "endPoint": { - "x": 800.8154030901666, - "y": 303.8052050135985 - } - }, - { - "id": "2021082504630463", - "source": "2021053101941875", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630463, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.TaopiaopiaoShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021071603299630", - "source": "2021053101941875", - "target": "2021042001647738", - "label": "账单pid等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299630, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillPID", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021060101944684", - "source": "2021053101941875", - "target": "2021042001647738", - "label": "拥有支付码", - "data": { - "belongToProject": 0, - "dataCount": 32370, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101944684, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单pid等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单pid等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 889.4465375204906, - "y": -122.36403704759289 - }, - "endPoint": { - "x": 780.3715270063266, - "y": 92.60060034241411 - } - }, - { - "id": "2021071103019004", - "source": "2021053101941875", - "target": "2021070602724516", - "label": "上映影片", - "data": { - "belongToProject": 0, - "dataCount": 219466, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071103019004, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021070602724516", - "type": "onViewFilm", - "typeZh": "上映影片" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "onViewFilm", - "virtual": true, - "spoLabel": "MKG.TaopiaopiaoShop_onViewFilm_MKG.Film", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "onViewFilm", - "previousColorType": "#666" - }, - "_label": "上映影片", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "上映影片", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 883.8142351317431, - "y": -127.12932002409607 - }, - "endPoint": { - "x": 628.707277191653, - "y": 61.20614329200455 - } - }, - { - "id": "2021062302196803", - "source": "2021053101941875", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 11238, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196803, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 912.0565611396943, - "y": -132.18731502907679 - }, - "endPoint": { - "x": 1148.7594292440074, - "y": -63.73328957363587 - } - }, - { - "id": "2021071403197141", - "source": "2021053101941875", - "target": "2021042001647722", - "label": "账单品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197141, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasBillBrand", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021053101941999", - "source": "2021053101941875", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101941999, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941875", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.TaopiaopiaoShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 894.1748598077996, - "y": -120.83068578601201 - }, - "endPoint": { - "x": 855.4709090470135, - "y": 122.67956108780349 - } - }, - { - "id": "2021042101658125", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "互斥意图等5种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658125, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "exclusiveIntent", - "typeZh": "互斥意图" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "exclusiveIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_exclusiveIntent_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "exclusiveIntent", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021061602095887", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "实例化", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061602095887, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "isInstanceOf", - "typeZh": "实例化" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isInstanceOf", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_isInstanceOf_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021052601883534", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "相似意图", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883534, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "similarIntent", - "typeZh": "相似意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "similarIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_similarIntent_MKG.Intent", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021042101658132", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "相关意图", - "data": { - "belongToProject": 0, - "dataCount": 94, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658132, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "相关意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021051801818437", - "source": "2021042101658086", - "target": "2021042101658086", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 3752, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818437, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101658086", - "type": "isA", - "typeZh": "上下位" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_isA_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "互斥意图等5种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "互斥意图等5种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021111805652056", - "source": "2021042101658086", - "target": "2021081904543901", - "label": "适用场景等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 10, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805652056, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021081904543901", - "type": "appliedSceneTag", - "typeZh": "适用场景" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "appliedSceneTag", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_appliedSceneTag_MKG.StandardTag", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "appliedSceneTag", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021111805652055", - "source": "2021042101658086", - "target": "2021081904543901", - "label": "适用人群", - "data": { - "belongToProject": 0, - "dataCount": 122, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805652055, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021081904543901", - "type": "appliedCrowdTag", - "typeZh": "适用人群" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "appliedCrowdTag", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_appliedCrowdTag_MKG.StandardTag", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "适用场景等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "适用场景等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021062902346331", - "source": "combo-2021042001647754", - "target": "2021062202192857", - "data": { - "belongToProject": 0, - "dataCount": 3041, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062902346331, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021062202192857", - "type": "hasServiceCategory", - "typeZh": "关联服务类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasServiceCategory", - "virtual": true, - "spoLabel": "MKG.Intent_hasServiceCategory_MKG.ServiceCategory", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021042101658134", - "source": "combo-2021042001647754", - "target": "2021042101657968", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658134, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042101657968", - "type": "relatedProduct", - "typeZh": "相关产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedProduct", - "virtual": true, - "spoLabel": "MKG.Intent_relatedProduct_MKG.Product", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021111505610252", - "source": "combo-2021042001647754", - "target": "combo-2021102005411229", - "data": { - "belongToProject": 0, - "dataCount": 3151, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111505610252, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021102005411227", - "type": "hasIntentedObject", - "typeZh": "行为对象" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasIntentedObject", - "virtual": true, - "spoLabel": "MKG.Intent_hasIntentedObject_CKG.Object", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021042101658131", - "source": "2021042101658086", - "target": "2021042001647724", - "label": "相关功能", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658131, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042101658086", - "target": "2021042001647724", - "type": "relatedFunction", - "typeZh": "相关功能" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedFunction", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Intent_relatedFunction_MKG.Function", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "relatedFunction", - "previousColorType": "#945FB9" - }, - "_label": "相关功能", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "相关功能", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021090904840437", - "source": "2021042001647738", - "target": "2021042101657968", - "label": "账单产品等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021090904840437, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.PartnerID_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillProduct", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021072803815072", - "source": "2021042001647738", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072803815072, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.PartnerID_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单产品等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021060101943960", - "source": "2021042001647738", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 54374330, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101943960, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.PartnerID_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021071903461376", - "source": "2021042001647738", - "target": "2021052601883401", - "label": "同ID", - "data": { - "belongToProject": 0, - "dataCount": 398565726, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071903461376, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647738", - "target": "2021052601883401", - "type": "sameID", - "typeZh": "同ID" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameID", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.PartnerID_sameID_MKG.User", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameID", - "previousColorType": "#945FB9" - }, - "_label": "同ID", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同ID", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "2021081904553550", - "source": "2021081904543901", - "target": "2021081904543901", - "label": "继承", - "data": { - "belongToProject": 0, - "dataCount": 29, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021081904553550, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021081904543901", - "target": "2021081904543901", - "type": "isA", - "typeZh": "继承" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.StandardTag_isA_MKG.StandardTag", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "继承", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "继承", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021081904549515", - "source": "combo-2021042001647754", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021081904549515, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647754", - "target": "2021042001647754", - "type": "isA", - "typeZh": "继承" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": true, - "spoLabel": "MKG.Terminology_isA_MKG.Terminology", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 25 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021051801818436", - "source": "2021042001647723", - "target": "2021042001647723", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818436, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647723", - "target": "2021042001647723", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Category_isA_MKG.Category", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "combo-2021111805652057", - "source": "2021042001647722", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 1, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805652057, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647722", - "target": "2021042101658086", - "type": "commonIntent", - "typeZh": "常用意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "commonIntent", - "virtual": true, - "spoLabel": "MKG.Brand_commonIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021121405955339", - "source": "2021042001647722", - "target": "2021042001647722", - "label": "继承等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021121405955339, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647722", - "target": "2021042001647722", - "type": "isA", - "typeZh": "继承" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Brand_isA_MKG.Brand", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021051801818435", - "source": "2021042001647722", - "target": "2021042001647722", - "label": "子品牌", - "data": { - "belongToProject": 0, - "dataCount": 2, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818435, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647722", - "target": "2021042001647722", - "type": "hasSubBrand", - "typeZh": "子品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasSubBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Brand_hasSubBrand_MKG.Brand", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "继承等2种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "继承等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883525", - "source": "2021042001647721", - "target": "706000077", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883525, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647721", - "target": "706000077", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.AOI_locatedAt_Province", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883524", - "source": "2021042001647721", - "target": "706000076", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883524, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647721", - "target": "706000076", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.AOI_locatedAt_District", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883526", - "source": "2021042001647721", - "target": "706000078", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883526, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647721", - "target": "706000078", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.AOI_locatedAt_City", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021062202193071", - "source": "2021062202192858", - "target": "2021062202192858", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 659, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202193071, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021062202192858", - "target": "2021062202192858", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.ShopCategory_isA_MKG.ShopCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021071403197165", - "source": "2021053101941871", - "target": "2021042101657968", - "label": "账单…", - "data": { - "belongToProject": 0, - "dataCount": 1218, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197165, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillProduct", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021053101942005", - "source": "2021053101941871", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942005, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 852.7161533967477, - "y": -63.63366628712078 - }, - "endPoint": { - "x": 802.1080673379146, - "y": 6.879936662083447 - } - }, - { - "id": "combo-2021071403197149", - "source": "2021053101941871", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 1447, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197149, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": true, - "spoLabel": "MKG.DamaiShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021070802880012", - "source": "2021053101941871", - "target": "2021042101658086", - "label": "关联意图", - "data": { - "belongToProject": 0, - "dataCount": 2732, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880012, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 855.0536088287002, - "y": -62.24084383213558 - }, - "endPoint": { - "x": 687.0078562566725, - "y": 283.6553566024548 - } - }, - { - "id": "2021082504630460", - "source": "2021053101941871", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630460, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.DamaiShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021060201957784", - "source": "2021053101941871", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 1912, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201957784, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 855.580058693982, - "y": -61.99677869656068 - }, - "endPoint": { - "x": 703.2727988342864, - "y": 282.7810719852403 - } - }, - { - "id": "2021062102181050", - "source": "2021053101941871", - "target": "2021042001647721", - "label": "关联AOI", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181050, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "relatedAOI", - "previousColorType": "#1E9493" - }, - "_label": "关联AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 859.4685057711005, - "y": -60.84120929171626 - }, - "endPoint": { - "x": 799.9892161384787, - "y": 303.6479878686256 - } - }, - { - "id": "2021071403197134", - "source": "2021053101941871", - "target": "2021042001647722", - "label": "账单品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197134, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasBillBrand", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021053101941995", - "source": "2021053101941871", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101941995, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 861.3701760886954, - "y": -60.64658966217377 - }, - "endPoint": { - "x": 853.6345766147401, - "y": 122.49546496396522 - } - }, - { - "id": "2021071603299618", - "source": "2021053101941871", - "target": "2021042001647738", - "label": "账单pid等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299618, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillPID", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021060101944680", - "source": "2021053101941871", - "target": "2021042001647738", - "label": "拥有支付码", - "data": { - "belongToProject": 0, - "dataCount": 4054, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101944680, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单pid等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单pid等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 855.0686042777209, - "y": -62.233568287857246 - }, - "endPoint": { - "x": 780.1084440977187, - "y": 92.47013158267843 - } - }, - { - "id": "2021062302196799", - "source": "2021053101941871", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 2748, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196799, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941871", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.DamaiShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 878.0190794671776, - "y": -75.71521167940534 - }, - "endPoint": { - "x": 1148.1558947651465, - "y": -60.205392923307336 - } - }, - { - "id": "2021052601883532", - "source": "2021042001647739", - "target": "706000078", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883532, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "706000078", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_City", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021042101658010", - "source": "2021042001647739", - "target": "2021042001647721", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 47519797, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658010, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "2021042001647721", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_MKG.AOI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883531", - "source": "2021042001647739", - "target": "706000077", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883531, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "706000077", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_Province", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021052601883530", - "source": "2021042001647739", - "target": "706000076", - "label": "位于", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021052601883530, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647739", - "target": "706000076", - "type": "locatedAt", - "typeZh": "位于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "locatedAt", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.POI_locatedAt_District", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "locatedAt", - "previousColorType": "#FF9845" - }, - "_label": "位于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "位于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021062202193070", - "source": "2021062202192857", - "target": "2021062202192857", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 478, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202193070, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021062202192857", - "target": "2021062202192857", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.ServiceCategory_isA_MKG.ServiceCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021042001647762", - "source": "2021042001647749", - "target": "2021042001647738", - "label": "拥有支付码等2…", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042001647762, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "hasPID", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021081604490280", - "source": "2021042001647749", - "target": "2021042001647738", - "label": "推理的PID", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021081604490280, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042001647738", - "type": "hasInferPID", - "typeZh": "推理的PID" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasInferPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasInferPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "拥有支付码等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "拥有支付码等2…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 385.9769968961476, - "y": 293.0653411821841 - }, - "endPoint": { - "x": 758.7125602060181, - "y": 113.80355828731429 - } - }, - { - "id": "2021090204762442", - "source": "2021042001647749", - "target": "2021042001647721", - "label": "附近AOI", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021090204762442, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042001647721", - "type": "nearbyAOI", - "typeZh": "附近AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "nearbyAOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_nearbyAOI_MKG.AOI", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "nearbyAOI", - "previousColorType": "#1E9493" - }, - "_label": "附近AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "附近AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 387.54125131801305, - "y": 300.7295974226514 - }, - "endPoint": { - "x": 781.4289793182922, - "y": 318.70951732893514 - } - }, - { - "id": "2021042101658127", - "source": "2021042001647749", - "target": "2021042001647722", - "label": "所属品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658127, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "hasBrand", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021071403175562", - "source": "2021042001647749", - "target": "2021042001647722", - "label": "账单品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403175562, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "所属品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 386.7268571365441, - "y": 294.9105422964299 - }, - "endPoint": { - "x": 837.7904042936176, - "y": 143.5706691800387 - } - }, - { - "id": "2021042001647768", - "source": "2021042001647749", - "target": "2021042001647739", - "label": "关…", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042001647768, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 387.55739006466456, - "y": 299.8729202809729 - }, - "endPoint": { - "x": 680.80797619033, - "y": 297.5437091823839 - } - }, - { - "id": "2021071403175574", - "source": "2021042001647749", - "target": "2021042101657968", - "label": "账单产品等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403175574, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillProduct", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021042101658129", - "source": "2021042001647749", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021042101658129, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单产品等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 384.8808009776971, - "y": 291.1399678726662 - }, - "endPoint": { - "x": 779.4559284836913, - "y": 28.73863867697365 - } - }, - { - "id": "combo-2021071403175568", - "source": "2021042001647749", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403175568, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": true, - "spoLabel": "MKG.Shop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 386.50190296210474, - "y": 305.7163465748048 - }, - "endPoint": { - "x": 510.901967054398, - "y": 353.3015639783491 - } - }, - { - "id": "2021062202193069", - "source": "2021042001647749", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202193069, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021042001647749", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Shop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 386.1304804936098, - "y": 293.39396152284513 - }, - "endPoint": { - "x": 1149.5570024654405, - "y": -52.68222995088062 - } - }, - { - "id": "310004620", - "source": "706000077", - "target": "706000078", - "label": "省会等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 28, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310004620, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000077", - "target": "706000078", - "type": "chiefCityInProvince", - "typeZh": "省会" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "chiefCityInProvince", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "Province_chiefCityInProvince_City", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "chiefCityInProvince", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "310001766", - "source": "706000077", - "target": "706000078", - "label": "包括", - "data": { - "belongToProject": 0, - "dataCount": 362, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001766, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000077", - "target": "706000078", - "type": "include", - "typeZh": "包括" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "include", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "Province_include_City", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "省会等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "省会等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "310004629", - "source": "706000077", - "target": "707000062", - "label": "属于国家", - "data": { - "belongToProject": 0, - "dataCount": 34, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310004629, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000077", - "target": "707000062", - "type": "belongToCountry", - "typeZh": "属于国家" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "belongToCountry", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "Province_belongToCountry_Country", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "belongToCountry", - "previousColorType": "#1E9493" - }, - "_label": "属于国家", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "属于国家", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "310001763", - "source": "706000078", - "target": "706000077", - "label": "属于", - "data": { - "belongToProject": 0, - "dataCount": 362, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001763, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000078", - "target": "706000077", - "type": "belongto", - "typeZh": "属于" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "belongto", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "City_belongto_Province", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "belongto", - "previousColorType": "#1E9493" - }, - "_label": "属于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "属于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "310001764", - "source": "706000078", - "target": "706000076", - "label": "包括", - "data": { - "belongToProject": 0, - "dataCount": 3140, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001764, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000078", - "target": "706000076", - "type": "include", - "typeZh": "包括" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "include", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "City_include_District", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "include", - "previousColorType": "#5B8FF9" - }, - "_label": "包括", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包括", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "310001765", - "source": "706000076", - "target": "706000078", - "label": "属于", - "data": { - "belongToProject": 0, - "dataCount": 3170, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 310001765, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "706000076", - "target": "706000078", - "type": "belongto", - "typeZh": "属于" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "belongto", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "District_belongto_City", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "belongto", - "previousColorType": "#1E9493" - }, - "_label": "属于", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "属于", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "2021071403193211", - "source": "2021071403192966", - "target": "2021071403192966", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403193211, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021071403192966", - "target": "2021071403192966", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.ProductCategory_isA_MKG.ProductCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021070102460197", - "source": "2021052601883401", - "target": "2021053101941871", - "label": "从支付码消费等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460197, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941871", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": true, - "spoLabel": "MKG.User_consumeFromPID_MKG.DamaiShop", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#3c3c3c", - "#494949", - "#575757", - "#666666", - "#757575", - "#848484", - "#949494", - "#b6b6b6", - "#dadada", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#666" - }, - "foldEdge": [ - { - "id": "2021060201953756", - "source": "2021052601883401", - "target": "2021053101941871", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953756, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941871", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.DamaiShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953776", - "source": "2021052601883401", - "target": "2021053101941871", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 288544, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953776, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941871", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.DamaiShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "从支付码消费等3种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "从支付码消费等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 731.3035950513593, - "y": 167.7644377275258 - }, - "endPoint": { - "x": 854.4981450021824, - "y": -62.524212516012824 - } - }, - { - "id": "2021070102460199", - "source": "2021052601883401", - "target": "2021053101941872", - "label": "从支付码消费等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460199, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941872", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consumeFromPID_MKG.EleShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021060201953758", - "source": "2021052601883401", - "target": "2021053101941872", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953758, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941872", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.EleShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953778", - "source": "2021052601883401", - "target": "2021053101941872", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 458791310, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953778, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941872", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.EleShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "从支付码消费等3种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "从支付码消费等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 733.1483334740456, - "y": 168.9191555647542 - }, - "endPoint": { - "x": 887.2944227308736, - "y": -43.67893035324121 - } - }, - { - "id": "combo-2021070102460193", - "source": "2021052601883401", - "target": "combo-2021042001647740", - "data": { - "belongToProject": 0, - "dataCount": 2420739, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460193, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657967", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": true, - "spoLabel": "MKG.User_consumeFromPID_MKG.AppService", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021060201953750", - "source": "2021052601883401", - "target": "2021042101657967", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 1187001669, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953750, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657967", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.AppService", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953770", - "source": "2021052601883401", - "target": "2021042101657967", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 1025825820, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953770, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657967", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.AppService", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021070102460195", - "source": "2021052601883401", - "target": "2021053101936949", - "label": "从支付码消费等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460195, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101936949", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consumeFromPID_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021060201953752", - "source": "2021052601883401", - "target": "2021053101936949", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953752, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101936949", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.MifShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953774", - "source": "2021052601883401", - "target": "2021053101936949", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 3326009996, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953774, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101936949", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.MifShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "从支付码消费等3种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "从支付码消费等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 730.4820283976236, - "y": 167.35480314046626 - }, - "endPoint": { - "x": 855.3197116559182, - "y": -102.11457792895328 - } - }, - { - "id": "2021070102460205", - "source": "2021052601883401", - "target": "2021053101941875", - "label": "从支付码消费等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 545334, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460205, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941875", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consumeFromPID_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021060201953764", - "source": "2021052601883401", - "target": "2021053101941875", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953764, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941875", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953784", - "source": "2021052601883401", - "target": "2021053101941875", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 458111, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953784, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941875", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.TaopiaopiaoShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "从支付码消费等3种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "从支付码消费等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 731.390757776879, - "y": 167.81141350862933 - }, - "endPoint": { - "x": 889.0519984280402, - "y": -122.57118829711634 - } - }, - { - "id": "2021071503245934", - "source": "2021052601883401", - "target": "2021070602724516", - "label": "购买电影票", - "data": { - "belongToProject": 0, - "dataCount": 7263633, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071503245934, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021070602724516", - "type": "buyMovieTicket", - "typeZh": "购买电影票" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "buyMovieTicket", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_buyMovieTicket_MKG.Film", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "buyMovieTicket", - "previousColorType": "#5B8FF9" - }, - "_label": "购买电影票", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "购买电影票", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021070102460201", - "source": "2021052601883401", - "target": "2021053101941873", - "label": "从支付码消费等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460201, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941873", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consumeFromPID_MKG.FliggyShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021060201953760", - "source": "2021052601883401", - "target": "2021053101941873", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953760, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941873", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.FliggyShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953780", - "source": "2021052601883401", - "target": "2021053101941873", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 3282763, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953780, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941873", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.FliggyShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "从支付码消费等3种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "从支付码消费等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 733.7740338450935, - "y": 169.3967411169151 - }, - "endPoint": { - "x": 921.3097385112032, - "y": -64.15651590540213 - } - }, - { - "id": "2021070102460203", - "source": "2021052601883401", - "target": "2021053101941874", - "label": "从支付码消费等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 26808217, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460203, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941874", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consumeFromPID_MKG.KoubeiShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021060201953762", - "source": "2021052601883401", - "target": "2021053101941874", - "label": "点击", - "data": { - "belongToProject": 0, - "dataCount": 39827630, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953762, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941874", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.KoubeiShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021060201953782", - "source": "2021052601883401", - "target": "2021053101941874", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 456665851, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953782, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941874", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.KoubeiShop", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "从支付码消费等3种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "从支付码消费等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 732.8908793053374, - "y": 168.7363348260438 - }, - "endPoint": { - "x": 922.1928930509594, - "y": -103.4961096145308 - } - }, - { - "id": "2021112205696683", - "source": "2021052601883401", - "target": "2021112205696328", - "label": "同人", - "data": { - "belongToProject": 0, - "dataCount": 850927359, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021112205696683, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021112205696328", - "type": "isThePerson", - "typeZh": "同人" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isThePerson", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_isThePerson_MKG.Person", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "isThePerson", - "previousColorType": "#5B8FF9" - }, - "_label": "同人", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同人", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021060201953754", - "source": "2021052601883401", - "target": "2021053101941854", - "label": "点击等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 260424402, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953754, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941854", - "type": "click", - "typeZh": "点击" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "click", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_click_MKG.Benefit", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "click", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021060201953786", - "source": "2021052601883401", - "target": "2021053101941854", - "label": "核销", - "data": { - "belongToProject": 0, - "dataCount": 8020408, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953786, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021053101941854", - "type": "use", - "typeZh": "核销" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "use", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_use_MKG.Benefit", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "点击等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "点击等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021072003521632", - "source": "2021052601883401", - "target": "2021052601883401", - "label": "同事等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072003521632, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021052601883401", - "type": "workmate", - "typeZh": "同事" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "workmate", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.User_workmate_MKG.User", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "workmate", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021072003521630", - "source": "2021052601883401", - "target": "2021052601883401", - "label": "夫妻", - "data": { - "belongToProject": 0, - "dataCount": 321419640, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021072003521630, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021052601883401", - "type": "couple", - "typeZh": "夫妻" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "couple", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.User_couple_MKG.User", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "同事等2种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "同事等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021061502070813", - "source": "2021052601883401", - "target": "2021061502070640", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061502070813, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021061502070640", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.TaobaoItem", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021060201953768", - "source": "2021052601883401", - "target": "2021042001647738", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 12530701969, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953768, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042001647738", - "type": "consume", - "typeZh": "消费" - }, - "type": "custom-quadratic", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.PartnerID", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": 10, - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "curveLevel": 1, - "isAdded": false - }, - { - "id": "combo-2021060201953772", - "source": "2021052601883401", - "target": "combo-2021042001647734", - "data": { - "belongToProject": 0, - "dataCount": 2296386422, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953772, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021051301783085", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": true, - "spoLabel": "MKG.User_consume_MKG.IndirectMerchant", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021060201954721", - "source": "2021052601883401", - "target": "2021042101657968", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 5848965248, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201954721, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101657968", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.Product", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021060201953766", - "source": "2021052601883401", - "target": "2021042001647722", - "label": "消费", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201953766, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042001647722", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consume_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "consume", - "previousColorType": "#1E9493" - }, - "_label": "消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "消费", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "combo-2021071603289707", - "source": "2021052601883401", - "target": "combo-2021071603289464", - "data": { - "belongToProject": 0, - "dataCount": 898099196, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603289707, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021071603289465", - "type": "connect", - "typeZh": "连接" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "connect", - "virtual": true, - "spoLabel": "MKG.User_connect_MKG.WiFi", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021070102460191", - "source": "2021052601883401", - "target": "2021042001647749", - "label": "…", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070102460191, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042001647749", - "type": "consumeFromPID", - "typeZh": "从支付码消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consumeFromPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.User_consumeFromPID_MKG.Shop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "consumeFromPID", - "previousColorType": "#945FB9" - }, - "_label": "从支付码消费", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 708.5868535680389, - "y": 186.9604150915596 - }, - "endPoint": { - "x": 386.7273952122289, - "y": 294.9121462946306 - } - }, - { - "id": "combo-2021061102039378", - "source": "2021052601883401", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 11215809662, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021061102039378, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883401", - "target": "2021042101658086", - "type": "consume", - "typeZh": "消费" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "consume", - "virtual": true, - "spoLabel": "MKG.User_consume_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021102005411230", - "source": "2021102005411227", - "target": "2021102005411227", - "label": "上下位等3种关系", - "data": { - "belongToProject": 0, - "dataCount": 112, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021102005411230, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021102005411227", - "target": "2021102005411227", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "CKG.Object_isA_CKG.Object", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021111805658031", - "source": "2021102005411227", - "target": "2021102005411227", - "label": "从属于", - "data": { - "belongToProject": 0, - "dataCount": 2065, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805658031, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021102005411227", - "target": "2021102005411227", - "type": "isKindOf", - "typeZh": "从属于" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isKindOf", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "CKG.Object_isKindOf_CKG.Object", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - }, - { - "id": "2021111805658032", - "source": "2021102005411227", - "target": "2021102005411227", - "label": "相关对象", - "data": { - "belongToProject": 0, - "dataCount": 706, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021111805658032, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021102005411227", - "target": "2021102005411227", - "type": "modifiedBy", - "typeZh": "相关对象" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "modifiedBy", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "CKG.Object_modifiedBy_CKG.Object", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "上下位等3种关系", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位等3种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021070602724757", - "source": "2021070602724516", - "target": "2021070602724529", - "label": "电影导演等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070602724757, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021070602724516", - "target": "2021070602724529", - "type": "filmDirector", - "typeZh": "电影导演" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "filmDirector", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Film_filmDirector_MKG.FilmPerson", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "filmDirector", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021070602724755", - "source": "2021070602724516", - "target": "2021070602724529", - "label": "电影演员", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070602724755, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021070602724516", - "target": "2021070602724529", - "type": "filmActor", - "typeZh": "电影演员" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "filmActor", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Film_filmActor_MKG.FilmPerson", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "电影导演等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "电影导演等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "combo-2021070802876473", - "source": "2021070602724516", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 1264259, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802876473, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021070602724516", - "target": "2021070802876233", - "type": "filmType", - "typeZh": "电影所属类型" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "filmType", - "virtual": true, - "spoLabel": "MKG.Film_filmType_MKG.FilmType", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021062202185304", - "source": "2021052601883399", - "target": "2021042101658086", - "label": "包含意图", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062202185304, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021052601883399", - "target": "2021042101658086", - "type": "includeIntent", - "typeZh": "包含意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "includeIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Scene_includeIntent_MKG.Intent", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "includeIntent", - "previousColorType": "#1E9493" - }, - "_label": "包含意图", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "包含意图", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "isAdded": false - }, - { - "id": "2021071403197167", - "source": "2021053101941872", - "target": "2021042101657968", - "label": "账单产…", - "data": { - "belongToProject": 0, - "dataCount": 1811716, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197167, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillProduct", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021053101942006", - "source": "2021053101941872", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942006, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单产…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 883.8023990207141, - "y": -47.145373379958 - }, - "endPoint": { - "x": 805.6628378653257, - "y": 10.391643754920652 - } - }, - { - "id": "combo-2021070802880013", - "source": "2021053101941872", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 2860853, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880013, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": true, - "spoLabel": "MKG.EleShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071403197151", - "source": "2021053101941872", - "target": "2021042101658086", - "label": "账单意图", - "data": { - "belongToProject": 0, - "dataCount": 2134043, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197151, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 888.6264640903935, - "y": -42.810708257169374 - }, - "endPoint": { - "x": 695.5833150242296, - "y": 288.23036859472046 - } - }, - { - "id": "2021060201957786", - "source": "2021053101941872", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 2530877, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201957786, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 888.8205168791382, - "y": -42.699359151627725 - }, - "endPoint": { - "x": 704.6733568005078, - "y": 283.4836524403073 - } - }, - { - "id": "2021082504630461", - "source": "2021053101941872", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630461, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.EleShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021062102181052", - "source": "2021053101941872", - "target": "2021042001647721", - "label": "关联AOI", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181052, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "relatedAOI", - "previousColorType": "#1E9493" - }, - "_label": "关联AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 892.6026653109311, - "y": -41.16226528487974 - }, - "endPoint": { - "x": 801.4960727500256, - "y": 303.9690438617891 - } - }, - { - "id": "2021062302196800", - "source": "2021053101941872", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 2739489, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196800, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 912.6856132491038, - "y": -56.7912215864978 - }, - "endPoint": { - "x": 1148.130377134598, - "y": -59.12938301621489 - } - }, - { - "id": "2021060101944681", - "source": "2021053101941872", - "target": "2021042001647738", - "label": "拥有支付码等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 5840395, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101944681, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "hasPID", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021071603299621", - "source": "2021053101941872", - "target": "2021042001647738", - "label": "账单pid", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299621, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "拥有支付码等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "拥有支付码等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 887.0400552440054, - "y": -43.86722782623503 - }, - "endPoint": { - "x": 782.7780092828117, - "y": 94.10379112105622 - } - }, - { - "id": "2021071403197136", - "source": "2021053101941872", - "target": "2021042001647722", - "label": "账单品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197136, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasBillBrand", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021053101941996", - "source": "2021053101941872", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 312531, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101941996, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941872", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.EleShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 893.1874235342632, - "y": -41.019612243018585 - }, - "endPoint": { - "x": 856.4583453205499, - "y": 122.86848754481004 - } - }, - { - "id": "combo-2022011206141208", - "source": "2021053101941854", - "target": "combo-2021102005411229", - "data": { - "belongToProject": 0, - "dataCount": 30401, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2022011206141208, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021102005411227", - "type": "hasBenefitObject", - "typeZh": "券商品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitObject", - "virtual": true, - "spoLabel": "MKG.Benefit_hasBenefitObject_CKG.Object", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "combo-2021123006094860", - "source": "2021053101941854", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 33053, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021123006094860, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021042101658086", - "type": "hasBenefitIntent", - "typeZh": "券意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitIntent", - "virtual": true, - "spoLabel": "MKG.Benefit_hasBenefitIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "isAdded": false - }, - { - "id": "2021123006094859", - "source": "2021053101941854", - "target": "2021071403192966", - "label": "券品类", - "data": { - "belongToProject": 0, - "dataCount": 37404, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021123006094859, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021071403192966", - "type": "hasBenefitGoods", - "typeZh": "券品类" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitGoods", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Benefit_hasBenefitGoods_MKG.ProductCategory", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "hasBenefitGoods", - "previousColorType": "#FF9845" - }, - "_label": "券品类", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "券品类", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021123006094858", - "source": "2021053101941854", - "target": "2021042001647722", - "label": "券品牌", - "data": { - "belongToProject": 0, - "dataCount": 65230, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021123006094858, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941854", - "target": "2021042001647722", - "type": "hasBenefitBrand", - "typeZh": "券品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBenefitBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.Benefit_hasBenefitBrand_MKG.Brand", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBenefitBrand", - "previousColorType": "#5B8FF9" - }, - "_label": "券品牌", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "券品牌", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "isAdded": false - }, - { - "id": "2021051801818438", - "source": "2021051801807030", - "target": "2021051801807030", - "label": "上下位", - "data": { - "belongToProject": 0, - "dataCount": 253, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021051801818438, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021051801807030", - "target": "2021051801807030", - "type": "isA", - "typeZh": "上下位" - }, - "type": "LoopEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "isA", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MCC2_isA_MKG.MCC2", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "isA", - "previousColorType": "#FF9845" - }, - "_label": "上下位", - "loopCfg": { - "position": "top", - "dist": 25 - }, - "fitviewLabel": "上下位", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "isAdded": false - }, - { - "id": "2021053101942008", - "source": "2021053101941873", - "target": "2021042101657968", - "label": "经营产品等2种…", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101942008, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "hasProduct", - "previousColorType": "#FF9845" - }, - "foldEdge": [ - { - "id": "2021071403197169", - "source": "2021053101941873", - "target": "2021042101657968", - "label": "账单产品", - "data": { - "belongToProject": 0, - "dataCount": 31727, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197169, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "经营产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "经营产品等2种…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 918.1986823164357, - "y": -67.48704825488477 - }, - "endPoint": { - "x": 805.9075707209818, - "y": 10.733318629847439 - } - }, - { - "id": "combo-2021070802880014", - "source": "2021053101941873", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 922861, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880014, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": true, - "spoLabel": "MKG.FliggyShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071403197153", - "source": "2021053101941873", - "target": "2021042101658086", - "label": "账单意图", - "data": { - "belongToProject": 0, - "dataCount": 199934, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197153, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 922.7849633928892, - "y": -63.10360881619753 - }, - "endPoint": { - "x": 699.4570791567669, - "y": 290.5818464396758 - } - }, - { - "id": "2021082504630462", - "source": "2021053101941873", - "target": "2021053101936949", - "label": "同店", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "BOTH", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021082504630462, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021053101936949", - "type": "sameStore", - "typeZh": "同店" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "sameStore", - "virtual": false, - "direction": "BOTH", - "spoLabel": "MKG.FliggyShop_sameStore_MKG.MifShop", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "sameStore", - "previousColorType": "#945FB9" - }, - "_label": "同店", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "同店", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "startArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - }, - "startArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "isAdded": false - }, - { - "id": "2021071603299624", - "source": "2021053101941873", - "target": "2021042001647738", - "label": "账单pid等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299624, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillPID", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021060101944682", - "source": "2021053101941873", - "target": "2021042001647738", - "label": "拥有支付码", - "data": { - "belongToProject": 0, - "dataCount": 1040675, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060101944682, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单pid等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单pid等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 920.8801935883179, - "y": -64.51394124982502 - }, - "endPoint": { - "x": 783.5788870898768, - "y": 94.75050454464623 - } - }, - { - "id": "2021062302196801", - "source": "2021053101941873", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 937547, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196801, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 947.2831987394701, - "y": -75.44360955422839 - }, - "endPoint": { - "x": 1148.1738077956093, - "y": -60.476995048484284 - } - }, - { - "id": "2021060201957788", - "source": "2021053101941873", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 799188, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201957788, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 922.8281758286586, - "y": -63.07641948879582 - }, - "endPoint": { - "x": 705.306714002365, - "y": 283.86071277747544 - } - }, - { - "id": "2021062102181054", - "source": "2021053101941873", - "target": "2021042001647721", - "label": "关联AOI", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181054, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "relatedAOI", - "previousColorType": "#1E9493" - }, - "_label": "关联AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 926.2026822578822, - "y": -61.47525596882299 - }, - "endPoint": { - "x": 802.5370719544521, - "y": 304.28203454573236 - } - }, - { - "id": "2021053101941998", - "source": "2021053101941873", - "target": "2021042001647722", - "label": "所属品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101941998, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#643389", - "#744198", - "#8450a9", - "#945fb9", - "#a46eca", - "#b57edb", - "#c68eec", - "#dbb3f3", - "#edd9f9", - "#ffffff" - ], - "previousTypeName": "hasBrand", - "previousColorType": "#945FB9" - }, - "foldEdge": [ - { - "id": "2021071403197138", - "source": "2021053101941873", - "target": "2021042001647722", - "label": "账单品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197138, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101941873", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.FliggyShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "所属品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#dbb3f3" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#a46eca" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#a46eca", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#a46eca" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#8450a9", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#8450a9" - }, - "shadowColor": "#8450a9", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#dbb3f3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#dbb3f3" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 925.8505837588956, - "y": -61.59889733759205 - }, - "endPoint": { - "x": 858.4362012472951, - "y": 123.44777263938352 - } - }, - { - "id": "2021071403197132", - "source": "2021053101936949", - "target": "2021042001647722", - "label": "账单品牌等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197132, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042001647722", - "type": "hasBillBrand", - "typeZh": "账单品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasBillBrand_MKG.Brand", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasBillBrand", - "previousColorType": "#1E9493" - }, - "foldEdge": [ - { - "id": "2021053101937067", - "source": "2021053101936949", - "target": "2021042001647722", - "label": "所属品牌", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101937067, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042001647722", - "type": "hasBrand", - "typeZh": "所属品牌" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBrand", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasBrand_MKG.Brand", - "icon": "", - "colorType": "#945FB9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单品牌等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单品牌等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 861.4758976576803, - "y": -100.64247429233312 - }, - "endPoint": { - "x": 853.5288550457553, - "y": 122.49134959412457 - } - }, - { - "id": "2021071603299615", - "source": "2021053101936949", - "target": "2021042001647738", - "label": "账单pid等2种关系", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071603299615, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042001647738", - "type": "hasBillPID", - "typeZh": "账单pid" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasBillPID_MKG.PartnerID", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillPID", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021053101937069", - "source": "2021053101936949", - "target": "2021042001647738", - "label": "拥有支付码", - "data": { - "belongToProject": 0, - "dataCount": 96686433, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101937069, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042001647738", - "type": "hasPID", - "typeZh": "拥有支付码" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasPID", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasPID_MKG.PartnerID", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单pid等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单pid等2种关系", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 856.1310584477542, - "y": -101.76557023567464 - }, - "endPoint": { - "x": 779.0459899276855, - "y": 92.00213353049584 - } - }, - { - "id": "2021071403197163", - "source": "2021053101936949", - "target": "2021042101657968", - "label": "账单产品等…", - "data": { - "belongToProject": 0, - "dataCount": 29539169, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197163, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042101657968", - "type": "hasBillProduct", - "typeZh": "账单产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasBillProduct_MKG.Product", - "icon": "", - "colorType": "#5B8FF9", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#0362c5", - "#2e71d6", - "#4680e8", - "#5b8ff9", - "#709ffb", - "#83affd", - "#94bfff", - "#bbd4ff", - "#dee9ff", - "#ffffff" - ], - "previousTypeName": "hasBillProduct", - "previousColorType": "#5B8FF9" - }, - "foldEdge": [ - { - "id": "2021053101937070", - "source": "2021053101936949", - "target": "2021042101657968", - "label": "经营产品", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021053101937070, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042101657968", - "type": "hasProduct", - "typeZh": "经营产品" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasProduct", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasProduct_MKG.Product", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "_label": "账单产品等2种关系", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "账单产品等…", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#bbd4ff" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#709ffb" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#709ffb", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#709ffb" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#4680e8", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#4680e8" - }, - "shadowColor": "#4680e8", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#bbd4ff", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#bbd4ff" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 854.8055497634475, - "y": -102.36402264008511 - }, - "endPoint": { - "x": 800.0186709712149, - "y": 5.61029301504778 - } - }, - { - "id": "2021062302196798", - "source": "2021053101936949", - "target": "2021062202192858", - "label": "所属类目", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062302196798, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021062202192858", - "type": "hasCategory", - "typeZh": "所属类目" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasCategory", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasCategory_MKG.ShopCategory", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "hasCategory", - "previousColorType": "#1E9493" - }, - "_label": "所属类目", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "所属类目", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 877.7646725632287, - "y": -113.64837399979427 - }, - "endPoint": { - "x": 1148.4103016690956, - "y": -62.27223060291841 - } - }, - { - "id": "combo-2021070802880011", - "source": "2021053101936949", - "target": "combo-2021042001647754", - "data": { - "belongToProject": 0, - "dataCount": 46396371, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021070802880011, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042101658086", - "type": "relatedIntent", - "typeZh": "关联意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedIntent", - "virtual": true, - "spoLabel": "MKG.MifShop_relatedIntent_MKG.Intent", - "icon": "", - "colorType": "#666", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - }, - "foldEdge": [ - { - "id": "2021071403197147", - "source": "2021053101936949", - "target": "2021042101658086", - "label": "账单意图", - "data": { - "belongToProject": 0, - "dataCount": 31174075, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021071403197147, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042101658086", - "type": "hasBillIntent", - "typeZh": "账单意图" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "hasBillIntent", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_hasBillIntent_MKG.Intent", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false - } - } - ], - "loopCfg": { - "position": "top", - "dist": 20 - }, - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "#b6b6b6", - "shadowBlur": 0 - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [ - 3, - 3 - ], - "stroke": "#757575", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [ - 3, - 3 - ], - "stroke": "#575757", - "shadowBlur": 10, - "shadowColor": "#575757", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [ - 3, - 3 - ], - "stroke": "rgba(182, 182, 182, 0.2)", - "shadowBlur": 0, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "isComboEdge": true, - "startPoint": { - "x": 855.5019804004334, - "y": -102.03151965548307 - }, - "endPoint": { - "x": 683.408218820895, - "y": 281.97485054454535 - } - }, - { - "id": "2021062102181048", - "source": "2021053101936949", - "target": "2021042001647721", - "label": "关联AOI", - "data": { - "belongToProject": 0, - "dataCount": 0, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021062102181048, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042001647721", - "type": "relatedAOI", - "typeZh": "关联AOI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedAOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_relatedAOI_MKG.AOI", - "icon": "", - "colorType": "#1E9493", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#006665", - "#0a7574", - "#158483", - "#1e9493", - "#36a4a3", - "#4ab4b3", - "#5cc5c3", - "#99d9d7", - "#cdeceb", - "#ffffff" - ], - "previousTypeName": "relatedAOI", - "previousColorType": "#1E9493" - }, - "_label": "关联AOI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联AOI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#99d9d7" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#36a4a3" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#36a4a3", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#36a4a3" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#158483", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#158483" - }, - "shadowColor": "#158483", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#99d9d7", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#99d9d7" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 859.699546519404, - "y": -100.80523798569084 - }, - "endPoint": { - "x": 799.7581753901753, - "y": 303.61201656260016 - } - }, - { - "id": "2021060201955384", - "source": "2021053101936949", - "target": "2021042001647739", - "label": "关联POI", - "data": { - "belongToProject": 0, - "dataCount": 43467563, - "direction": "SINGLE", - "extension": null, - "iCopyRelationToDest": false, - "iFuseEdge": false, - "iHidden": false, - "id": 2021060201955384, - "logKey": "", - "operation": "", - "relationSource": 0, - "source": "2021053101936949", - "target": "2021042001647739", - "type": "relatedPOI", - "typeZh": "关联POI" - }, - "type": "VectorEdge", - "disabled": false, - "accessible": true, - "isConcept": false, - "custom": { - "typeName": "relatedPOI", - "virtual": false, - "direction": "SINGLE", - "spoLabel": "MKG.MifShop_relatedPOI_MKG.POI", - "icon": "", - "colorType": "#FF9845", - "operation": "", - "isConceptSource": false, - "isConceptTarget": false, - "colors": [ - "#c76913", - "#d97825", - "#ec8835", - "#ff9845", - "#ffa955", - "#ffb964", - "#ffc974", - "#ffdba2", - "#ffedd0", - "#ffffff" - ], - "previousTypeName": "relatedPOI", - "previousColorType": "#FF9845" - }, - "_label": "关联POI", - "loopCfg": { - "position": "top", - "dist": 20 - }, - "fitviewLabel": "关联POI", - "showLabel": true, - "shape": "VectorEdge", - "labelCfg": { - "fontSize": 10, - "position": "center", - "refX": "0", - "refY": "0", - "autoRotate": true, - "style": { - "fontSize": 10, - "fill": "rgba(0,0,0,0.65)", - "fontWeight": 100, - "fillOpacity": 1, - "backgroundColor": "#fff", - "backgroundPadding": 4, - "lineWidth": 3 - } - }, - "style": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - }, - "disable": { - "stroke": "rgb(245, 245, 245)", - "lineWidth": 1 - }, - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffdba2" - } - }, - "stateStyles": { - "active": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ffa955" - }, - "text-shape": { - "fontWeight": 500 - } - }, - "highlight": { - "lineWidth": 4, - "lineDash": [], - "stroke": "#ffa955", - "shadowBlur": 0, - "endArrow": { - "path": "M 8,0 L 17,-4.5 L 17,4.5 Z", - "d": 4, - "lineWidth": 4, - "lineDash": [], - "fill": "#ffa955" - }, - "labelCfg": { - "style": { - "fontWeight": 500, - "fontSize": 14 - } - }, - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "selected": { - "lineWidth": 2, - "lineDash": [], - "stroke": "#ec8835", - "shadowBlur": 10, - "endArrow": { - "path": "M 0,0 L 7,-3.5 L 7,3.5 Z", - "d": 0, - "lineWidth": 2, - "lineDash": [], - "fill": "#ec8835" - }, - "shadowColor": "#ec8835", - "text-shape": { - "fontWeight": 500, - "fill": "rgba(0, 0, 0, 0.85)" - } - }, - "inactive": { - "lineWidth": 1, - "lineDash": [], - "stroke": "#ffdba2", - "shadowBlur": 0, - "endArrow": { - "path": "M 0,0 L 6,-3 L 6,3 Z", - "d": 0, - "lineWidth": 1, - "lineDash": [], - "fill": "#ffdba2" - }, - "labelCfg": { - "style": { - "fillOpacity": 0.1 - } - } - } - }, - "isAdded": false, - "startPoint": { - "x": 856.1149459607446, - "y": -101.7719902560651 - }, - "endPoint": { - "x": 702.7379115675238, - "y": 282.5562835447447 - } - } - ], - "combos": [ - { - "id": "combo-706000074", - "label": "地点", - "x": 593.6126535403821, - "y": 602.5535679166017, - "fx": 593.6126535403821, - "fy": 602.5535679166017, - "children": [ - { - "id": "2021042001647731", - "comboId": "combo-706000074", - "itemType": "node", - "depth": 12 - }, - { - "id": "706000075", - "comboId": "combo-706000074", - "itemType": "node", - "depth": 12 - } - ], - "depth": 10, - "style": { - "opacity": 0.6, - "r": 39.395431207184416, - "width": 32, - "height": 72 - }, - "type": "combo" - }, - { - "id": "combo-2021102005411229", - "label": "2021102005411229", - "x": 989.9382601878009, - "y": 13.851915530302868, - "fx": 989.9382601878009, - "fy": 13.851915530302868, - "children": [ - { - "id": "2021102005411227", - "comboId": "combo-2021102005411229", - "itemType": "node", - "depth": 24 - } - ], - "depth": 22, - "style": { - "opacity": 0.6, - "r": 22.627416997969522, - "width": 32, - "height": 32 - }, - "type": "combo" - }, - { - "id": "combo-2021071603289464", - "label": "介质", - "x": 525.4768906809878, - "y": 308.37267160797273, - "fx": 525.4768906809878, - "fy": 308.37267160797273, - "children": [ - { - "id": "2021071603289465", - "comboId": "combo-2021071603289464", - "itemType": "node", - "depth": 35 - } - ], - "depth": 33, - "style": { - "opacity": 0.6, - "r": 22.627416997969522, - "width": 32, - "height": 32 - }, - "type": "combo" - }, - { - "id": "combo-2021061602092722", - "label": "支付事件", - "x": 381.91257741983316, - "y": 239.26983604635677, - "fx": 381.91257741983316, - "fy": 239.26983604635677, - "children": [ - { - "id": "2021052601883396", - "comboId": "combo-2021061602092722", - "itemType": "node", - "depth": 46 - }, - { - "id": "2021061602092727", - "comboId": "combo-2021061602092722", - "itemType": "node", - "depth": 46 - } - ], - "depth": 44, - "style": { - "opacity": 0.6, - "r": 39.3954312071844, - "width": 32, - "height": 71.99999999999997 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647740", - "label": "服务", - "x": 618.0929591722611, - "y": -81.72500758813828, - "fx": 618.0929591722611, - "fy": -81.72500758813828, - "children": [ - { - "id": "2021042101657969", - "comboId": "combo-2021042001647740", - "itemType": "node", - "depth": 58 - }, - { - "id": "2021042101657967", - "comboId": "combo-2021042001647740", - "itemType": "node", - "depth": 58 - } - ], - "depth": 56, - "style": { - "opacity": 0.6, - "r": 39.395431207184416, - "width": 32, - "height": 72 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647734", - "label": "商户", - "x": 531.6102995537426, - "y": -24.910279050707658, - "fx": 531.6102995537426, - "fy": -24.910279050707658, - "children": [ - { - "id": "2021051301783085", - "comboId": "combo-2021042001647734", - "itemType": "node", - "depth": 70 - }, - { - "id": "2021051301783084", - "comboId": "combo-2021042001647734", - "itemType": "node", - "depth": 70 - } - ], - "depth": 68, - "style": { - "opacity": 0.6, - "r": 39.395431207184416, - "width": 32, - "height": 72 - }, - "type": "combo" - }, - { - "id": "combo-2021042001647754", - "label": "标准领域术语", - "x": 630.8761465955029, - "y": 399.193802522855, - "fx": 630.8761465955029, - "fy": 399.193802522855, - "children": [ - { - "id": "2021061702105197", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021042001647724", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021042101658086", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021081904543901", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021042001647723", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021070802876233", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021052601883395", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021052601883399", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - }, - { - "id": "2021051801807030", - "comboId": "combo-2021042001647754", - "itemType": "node", - "depth": 82 - } - ], - "depth": 80, - "style": { - "opacity": 0.6, - "r": 103.45194165596362, - "width": 147.17540966287265, - "height": 145.4256363923542 - }, - "type": "combo" - } - ] - } - const graph = new G6.Graph({ - container: div, - layout: { - type: 'comboCombined', - outerLayout: new GForceLayout({ - preventOverlap: true, - animate: false, // for gForce and fruchterman - repulsion: 400, - minDistanceThreshold: 1.5, - linkDistance: (edge, source, target) => { - const nodeSize = ((source.size?.[0] || 40) + (target.size?.[0] || 40)) / 2; - return Math.min(nodeSize * 1.5, 700); - } - }) - }, - width: 500, - height: 500, - modes: { - default: ['drag-canvas', 'drag-node', 'drag-combo', 'zoom-canvas'] - } - }); - graph.data(beforeData); - graph.render(); - - graph.on('canvas:dblclick', e => { - graph.set('animate', true) - graph.changeData(clone(afterData)); - }) - }); -}) \ No newline at end of file +}); \ No newline at end of file diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 805aeb11104..8cd7290f499 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@antv/g6-plugin", - "version": "0.6.0-beta.0", + "version": "0.6.0-beta.1", "description": "G6 Plugin", "main": "lib/index.js", "module": "es/index.js", @@ -22,7 +22,7 @@ "@antv/g-base": "^0.5.1", "@antv/g-canvas": "^0.5.2", "@antv/g-svg": "^0.5.2", - "@antv/g6-core": "*", + "@antv/g6-core": "0.6.0-beta.1", "@antv/matrix-util": "^3.1.0-beta.3", "@antv/scale": "^0.3.4", "@antv/util": "^2.0.9",