crubier / react-graph-vis

A react component to render nice graphs using vis.js

Home Page:http://crubier.github.io/react-graph-vis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change Background Color of clusters in react-graph-vis

syedraahim opened this issue · comments

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' } },