Change node radius to default when searching node

When searching a node, the radius will be made to 14. It looks like smaller than normal.

Change-Id: I7fb589367466f37057b3cc67d367805056fdf191
This commit is contained in:
Ziyu Bai 2019-12-23 19:41:39 +08:00
parent d19f5008e4
commit 6863a5f13d

View File

@ -73,7 +73,7 @@ function hzEntitiesGraph() {
.style("stroke", "darkgray")
.style("stroke-width", "1")
.style("fill", "#FFFFFF")
.attr('r', function(item) { return 14; });
.attr('r', function(item) { return circleRadius; });
// Set special style to the found node
if (value && value !== '') {