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
28
29
30
31
32
33
| const flowConfig = {
| router: {
| name: 'orth',
| args: {
| offset: 32,
| min: 16,
| direction: undefined,
| }
| },
| connector: {
| name: 'normal'
| },
| line: {
| strokeWidth: 2,
| stroke: '#5f95ff',
| strokeDasharray: 0,
| style: {
| animation: 'ant-line 0s infinite linear',
| },
| sourceMarker: null,
| targetMarker: {
| name: "block",
| width: 12,
| height: 8,
| },
| },
| outline: {
| stroke: '#456d89',
| strokeWidth: 7,
| },
| }
|
| export default flowConfig
|
|