question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Tooltips are not being displayed (loopbacks are missing too)

See original GitHub issue

Hi, I’m having an issue where description and type are not displayed as per your documentation. I have the following:

<script>
    const data = {{ data.network_topology | safe }};
    const distance = function (force) {
        force.jaccardLinkLengths(70, 1.0);
    };
    const diagram = new Diagram(
        "#diagram",
        data,
        {
            nodeWidth: 120,
            nodeHeight: 30,
            positionCache: false,
            initialTicks: 10,
            ticks: 1500,
            tooltip: "click",
            width: 1200,
            height: 600,
            distance: distance
        }
    );
    diagram.linkWidth(function (link) {
        if (!link)
            return 1;
        else if (link.bandwidth === "100G")
            return 10;
        else if (link.bandwidth === "10G")
            return 3;
        else if (link.bandwidth === "1G")
            return 2;
    });
    diagram.init(
        "description",
        "type",
        "loopback",
        "bandwidth",
        "interface",
        "intf-name"
    );
    // diagram.svg.attr("transform", "translate(100, 100) scale(1.5)");
</script>

Nodes are setup identically with an exception of naming convention:

{
        'name': 'brlb-t4core-1a',
        'group': 'CORE',
        'meta': {
            'loopback': '172.19.10.27',
            'type': 'Core',
            'description': 'Core - Aggregation Network'
        }
    }

Issue Analytics

  • State:closed
  • Created 10 months ago
  • Comments:11 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
codeoutcommented, Dec 11, 2022

@sngx13 Hi, I’ve just published another version of inet-henge with “groupPadding” option. Here is the document. Please try it and let me know if you have any further issues.

0reactions
sngx13commented, Dec 15, 2022

@sngx13 Hi, I’ve just published another version of inet-henge with “groupPadding” option. Here is the document. Please try it and let me know if you have any further issues.

Love it 😃 Thank you!!!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Issues · codeout/inet-henge - GitHub
Tooltips are not being displayed (loopbacks are missing too) ... Request for some changes to label and links so that the visibility of...
Read more >
Menus, tooltips and dropdowns are often misplaced on screen
In what appears to be random chance tooltips and menus are often misplaced on screen. It's common but not fully reproducible.
Read more >
Bootstrap tooltips not working - Stack Overflow
Some might be trying to display a tooltip in a modal and this does not work in all bootstrap versions. If you try...
Read more >
Tooltips not showing - CreativePro Network
This is with deselecting everything in the gray area and all I see is the hand symbol when hovering over everything. I checked...
Read more >
Tooltip Not Showing Calculations - Tableau Community
I am having a problem with a tooltip. Fields are NOT showing in the tooltip even though it looks ok in the tooltip...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found