V Network Graph Versions Save

An interactive network graph visualization component for Vue 3

v0.9.15

3 months ago

Bug Fix

  • Fixed path drawing not being updated when edges in path prop are updated. (#143)

v0.9.14

4 months ago

Bug Fix

  • Fixed not using the specified node position when restoring a deleted node. (#137)

v0.9.13

6 months ago

Bug Fix

  • Fixed incorrect zoom value calculation results in some cases when "fit-content" was specified in configs.view.autoPanAndZoomOnLoad.

The v0.9.12 is missing because it was found that more corrections were needed after the "v0.9.12" was tagged.

v0.9.11

6 months ago

Features

v0.9.10

7 months ago

Bug Fix

  • Fixed an error when calculating a curve with two nodes in the same position by @hpawa in #134 (Issue #133) 😍

v0.9.9

7 months ago

Bug Fix

  • Fixed incorrect start node determination for paths (#131)
    • If more than two of the same edge were consecutive, the determination of the starting point could be incorrect.

v0.9.8

8 months ago

Bug Fix

Performance improvement:

  • Fixed to not render uselessly when VEdgeOverlay is not used by @zamplyy in #129 (Issue #130) 😍

v0.9.7

8 months ago

Feature

  • Add the ability to offset edge markers perpendicular to the line. (#126)

v0.9.6

9 months ago

Bug Fix

  • Fix incorrect display of summarized edges when both edge.type="curve" and edge.margin configurations are specified (#124)

v0.9.5

10 months ago

Feature

  • Add the ability to specify edge label config by lambda function.

    const configs = vNG.defineConfigs({
      // like this:
      edge: {
        label: {
          fontSize: (edge) => edge.fontSize,
        },
      },
    });