Hi, everyone here. This is my first time using the Github issue. I really like the freedom and easy-to-use feature of the react-d3-graph! Thank you for the development community. Hope I can help in the future. :)
Describe the bug
My encounter problem is that after I use viewGenerator to customize my nodes, I can't add any border for the node.
To Reproduce
First, I tried to add node config. This can work before I use viewGenerator.
node: {
strokeColor: "#2f76c8",
strokeWidth: 3,
}

Second, I tried to use CSS to modify the borderColor, but it didn't work either.
node: {
backgroundColor: "#eee",
width: "100%",
height: "100%",
borderRadius: "80%",
borderColor: "#2f76c8"
}

Expected behavior
This might be the expected effect.

Am I missing something? Or is there any overwrite I need to do?
Environment:
- OS: Windows
- Browser: Chorme
- Node version 14.16.0
- react-d3-graph version 2.6.0
- d3 version 6.6.0
- react version 17.0.1
Thanks! :)