I am using following json content for specifying the size of each node:
"data": {
"id": "Name",
"name": "NameID",
"faveColor": "#86B342",
"size": 120
}
Once the graph is generated, I wish to increment the size of all nodes by a particular value (which comes from user input).
Given the fact that
'data(size)' + value
isn't a legit operation, can anyone suggest an apt way to achieve it?
Thanks