반응형
Uncaught (in promise)
TypeError: (intermediate value).container(...).data(...).nodeHeight(...).nodeWidth(...).childrenMargin(...).compactMarginBetween(...).compactMarginPair(...).neightbourMargin is not a function
이런 에러뜨는 경우
.neightbourMargin 함수 쓰는 부분 제거해라
d3-org-chart 스크립트 부분에 neightbourMargin 함수가 없었다.
before
.compactMarginPair((d) => 50)
.neightbourMargin((a, b) => 25)
.siblingsMargin((d) => 25)
after
.compactMarginPair((d) => 50)
.siblingsMargin((d) => 25)
반응형
'프로그래밍' 카테고리의 다른 글
[sourceTree] unable to open your web browser to do you have a default web brower set 에러 확인 (0) | 2022.12.15 |
---|---|
[Apache]Internal Server Error (3) | 2022.11.30 |
[PHP]composer 예전 버전 설치하는 방법(윈도우) (0) | 2022.11.21 |
node.js 최신버전 업데이트 (윈도우) (0) | 2022.11.15 |