D3 supports to change the cursor with the help of inline attributes, like:
...
node.style("cursor", "pointer")
...
Lets assume I want a custom cursor. A .PNG or .SVG for example. How can I achieve this? Unfortunately I can´t use CSS for this purpose as the custom cursor depends on JavaScript functions which are not always used.
In CSS it would be possible with:
node{
cursor: url("custom.png"), auto
}