Created
January 3, 2020 12:01
-
-
Save nrchandan/6b8a0ac554fefe8b90609066ee8429f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var options = { | |
nodes: { | |
shape: "dot", | |
scaling: { | |
customScalingFunction: function(min, max, total, value) { | |
return value / total; | |
}, | |
min: 5, | |
max: 150 | |
} | |
}, | |
edges: { | |
color: { | |
color: 'gray', | |
opacity: 0.5 | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment