forked from KNowledgeOnWebScale/dataflow-visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexampleData1.js
More file actions
27 lines (23 loc) · 825 Bytes
/
exampleData1.js
File metadata and controls
27 lines (23 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export const globalDefaultsJSON = {
autoLayout: true,
orientation: "vertical",
fill: "royalblue",
edgeColor: "darkgray",
markerEnd: {type: "arrowclosed"},
markerStart: {type: "arrowclosed"}
};
export const nodesJSON = [
{id: "LD1", label: '#LD', shape: "cylinder"},
{id: "LD2", label: '#LD', shape: "cylinder"},
{id: "LD3", label: '#LD', shape: "cylinder"},
{id: "LD4", label: '#LD', shape: "cylinder"},
{id: "LD5", label: '#LD', shape: "cylinder"},
{shape: "comunica"}
];
export const edgesJSON = [
{source: "comunica", target:"LD1", label: "LD1"},
{source: "comunica", target:"LD2", label:"LD2" },
{source: "comunica", target:"LD3", label: "LD3"},
{source: "comunica", target:"LD4", label: "LD4"},
{source: "comunica", target:"LD5", label: "LD5"},
];