You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 29, 2019. It is now read-only.
I use dataset.add() to load more nodes on doubleClick;
if total nodes number is small everything goes well,
after I reach about 400-600 nodes doubleClick event starts to come with an empty nodes array.
I'm using svg as node image, could this be the source of the issue?
visNetwork.on("doubleClick", function (params) {
console.log("doubleClick",params);
var nodes = params.nodes;
if (nodes.length > 0) {
.....
}
});
P.S. I disabled the svg node image and the problem continues,
I also tried the work around from #203 and also the same result, doubleclick event does not work after loading about 500 nodes
I use dataset.add() to load more nodes on doubleClick;
if total nodes number is small everything goes well,
after I reach about 400-600 nodes doubleClick event starts to come with an empty nodes array.
I'm using svg as node image, could this be the source of the issue?
Object {nodes: Array[0], edges: Array[0], pointer: Object, event: Object}
The text was updated successfully, but these errors were encountered: