Tooltips are not being displayed (loopbacks are missing too)
See original GitHub issueHi, 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:
- Created 10 months ago
- Comments:11 (6 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@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!!!