crubier / react-graph-vis

A react component to render nice graphs using vis.js
http://crubier.github.io/react-graph-vis/
MIT License
948 stars 170 forks source link

Change Background Color of clusters in react-graph-vis #88

Open syedraahim opened 4 years ago

syedraahim commented 4 years ago

I'm trying to change the background color of clusters in react-graph-vis. I have written options like this. Other attributes are correctly working but no changes regarding clustering.

options = { joinCondition: (nodeOptions) => { return nodeOptions.cid === 1; }, clusterNodeProperties : { color: { background : 'red' } },