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
34
35
36
37
| import { LINE_COLOR, LINE_WIDTH, VALUE_FONT_SIZE } from './common/baseConfig';
| import type { EdgeShapeConfig } from './common/types';
| export const LinkEdge: EdgeShapeConfig = {
| inherit: 'edge',
| defaultLabel: {
| markup: [
|
| {
| tagName: 'text',
| selector: 'label',
| },
| ],
| attrs: {
| text: {
| fill: '#000',
| fontSize: VALUE_FONT_SIZE,
| textAnchor: 'middle',
| textVerticalAnchor: 'middle',
| pointerEvents: 'none',
| // refY:'-2',
| },
|
| },
| position: {
| distance: 0.5,
| },
| },
| attrs: {
| line: {
| stroke: LINE_COLOR,
| strokeWidth: LINE_WIDTH,
|
| targetMarker: {},
| },
| },
| zIndex: -9999,
| };
|
|