From 6c7339df3134088d4cfc8072f79808d63ad9f2c8 Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Thu, 9 May 2019 23:56:22 -0500 Subject: mapping edge --- templates/cytoscape.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'templates/cytoscape.html') diff --git a/templates/cytoscape.html b/templates/cytoscape.html index 05fc045..b70481b 100644 --- a/templates/cytoscape.html +++ b/templates/cytoscape.html @@ -21,9 +21,10 @@ { selector: 'edge', css: { 'content': 'data(sentCnt)', - 'curve-style': 'bezier', - 'line-cap': 'round', - 'opacity': 'mapData(sentCnt, 1, 50, 0.2, 0.3)', + 'line-color':'black', + 'opacity': 'mapData(sentCnt, 1, 50, 0.3, 1)', + 'width': 'mapData(sentCnt, 1, 50, 0.3, 4)', + 'font-size': '9%' } }, { selector: 'node.highlight', @@ -38,12 +39,11 @@ }, { selector: 'edge.highlight', - style: { 'mid-target-arrow-color': '#FFF' }, - style:{ 'opacity': '0.9' } + style: { 'line-color': 'red' }, }, { selector: 'edge.semitransp', - style:{ 'opacity': '0.2' } + style:{ 'opacity': '0.01' } } ], elements:[ {{ elements | safe }} ], @@ -53,7 +53,7 @@ return node.degree(); }, levelWidth: function( nodes ){ - return 7; + return 6; } } -- cgit v1.2.3