UNPKG

cy-network

Version:

Simple network viewer widget based on Cytoscape.js and React.js.

31 lines (29 loc) 447 B
export const DEF_VISUAL_STYLE = [ { selector: 'node', style: { 'background-color': 'lightgreen', 'label': 'data(name)' } }, { selector: 'edge', style: { 'line-color': '#aaaaaa', 'width': 2 } }, { selector: 'node:selected', style: { 'background-color': 'red' } }, { selector: 'edge:selected', style: { 'line-color': 'red', 'width': 6 } } ];