I recently updated to version 2.0.1
and I am struggling to set images instead of svg circles to individual nodes. In the older versions I used nodeSvgShape
property:
nodeSvgShape: {
shape: 'image',
shapeProps: {
href: AppState.config.api.img + mainTile.image,
width: 100,
height: 100,
x: -50,
y: -17,
},
},
However in the current version this does nothing. Is there any way how can I achieve this in the current version?
Thank you in advance