dash14 / v-network-graph

An interactive network graph visualization component for Vue 3
https://dash14.github.io/v-network-graph/
MIT License
480 stars 44 forks source link

Edge Label Example not Working #151

Closed canerkoroglu closed 1 month ago

canerkoroglu commented 1 month ago

Hello, i've integrated grpah into my app successfully but i can't show edge labels correctly. Even basic code which is shared at below don't show the edge label. Where did i make mistake?

Screenshot 2024-06-05 at 17 05 02

`

` after rendered config and area attributes couldnt populated automatically. ``
canerkoroglu commented 1 month ago

I've found the problem,

forgot to define v-edge-label component in main vue export:

components: { "app-header": AppHeader, "app-footer": AppFooter, "app-theme-settings": AppThemeSettings, "v-network-graph": vNG.VNetworkGraph, "v-edge-label": vNG.VEdgeLabel },