How to create an image as a group node using JavaScript Diagram?
In the JavaScript Diagram, you can create a group node with an image source. To achieve this, you need to create an image node and add it as a child to the group node using the children property of the group node. Below is an example code demonstrating how to add an image in a group.
var nodes = [
{
id: "image",
offsetX: 250,
offsetY: 250,
// Size of the node
width: 100,
height: 100,
// sets the type of the shape as image
shape: {
type: 'Image',
source: 'https://ej2.syncfusion.com/demos/src/diagram/employees/image1.png'
},
//Customizes the appearances such as text, font, fill, and stroke.
style: {
fill: 'none'
}
}, {
id: 'group', children: ["image"]
},
];
Refer the working Sample for reference
Conclusion
I hope you enjoyed learning about how to create an image as a group node using JavaScript Diagram.
You can refer to our JavaScript Diagram feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our JavaScript Diagram example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!