summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/index.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx
index 7b84222..50358c0 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -731,6 +731,9 @@ export const Graph = forwardRef(function (props: GraphProps, graphRef: any) {
nodeCanvasObjectMode: () => 'after',
linkDirectionalParticles: visuals.particles ? visuals.particlesNumber : undefined,
+ linkDirectionalArrowLength: visuals.arrows ? visuals.arrowsLength : undefined,
+ linkDirectionalArrowRelPos: visuals.arrowsPos,
+ linkDirectionalArrowColor: (link) => getThemeColor(visuals.arrowsColor),
linkColor: (link) => {
const sourceId = typeof link.source === 'object' ? link.source.id! : (link.source as string)
const targetId = typeof link.target === 'object' ? link.target.id! : (link.target as string)