Events
26 Mar 202524 minutes to read
Diagram provides some events support for node that triggers when interacting with the node.
Click event
Triggers when the node is clicked. The following code example explains how to get the click
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:connectors="connectors"
:click="click"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 140,
height: 50,
offsetX: 300,
offsetY: 50,
annotations: [
{
content: 'Click node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const connectors = [
{
// Unique name for the connector
id: 'connector1',
sourceID: 'Start',
targetPoint: { x: 300, y: 200 },
type: 'Orthogonal',
annotations: [
{
content: 'Click Connector',
},
],
},
];
const width = "100%";
const height = "700px";
const click = function () {
let element = 'Diagram';
if (args.actualObject instanceof Node) {
element = 'Node';
} else if (args.actualObject instanceof Connector) {
element = 'Connector';
}
alert(element + ' is clicked');
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:connectors="connectors"
:click="click"
></ejs-diagram>
</div>
</template>
<script>
import {
DiagramComponent,
Node,
Connector,
} from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
id: 'Start',
width: 140,
height: 50,
offsetX: 300,
offsetY: 50,
annotations: [
{
content: 'Click node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
let connectors = [
{
// Unique name for the connector
id: 'connector1',
sourceID: 'Start',
targetPoint: { x: 300, y: 200 },
type: 'Orthogonal',
annotations: [
{
content: 'Click Connector',
},
],
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
connectors: connectors,
click: (args) => {
let element = 'Diagram';
if (args.actualObject instanceof Node) {
element = 'Node';
} else if (args.actualObject instanceof Connector) {
element = 'Connector';
}
alert(element + ' is clicked');
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
Selection change event
Triggers when the node is selected in diagram.
The following code example explains how to get the selectionChange
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:selectionChange="selectionChange"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Select node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const selectionChange = function () {
if (args.state === 'Changed') {
console.log('Selection Changed');
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:selectionChange="selectionChange"
></ejs-diagram>
</div>
</template>
<script>
import {
DiagramComponent
} from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Select node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
selectionChange: (args) => {
if (args.state === 'Changed') {
console.log('Selection Changed');
}
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
You can prevent selection by setting the cancel
property of SelectionChangeEventArgs
to true, as shown in the code snippet below.
selectionChange: function (args: ISelectionChangeEventArgs) {
if (args.state == 'Changing') {
//Prevents selection
args.cancel = true;
}
},
Position change event
While dragging the node through interaction, the position change event can be used to do the customization.
The following code example explains how to get the positionChange
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:positionChange="positionChange"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Move node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const positionChange = function () {
if (args.state === 'Completed') {
console.log('Position Changed');
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:positionChange="positionChange"
></ejs-diagram>
</div>
</template>
<script>
import {
DiagramComponent
} from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Move node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
positionChange: (args) => {
if (args.state === 'Completed') {
console.log('Position Changed');
}
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
You can prevent dragging by setting the cancel
property of DraggingEventArgs
to true, as shown in the code snippet below.
positionChange: function (args: IDraggingEventArgs) {
if (args.state == 'Progress') {
//Prevents dragging
args.cancel = true;
}
},
Size change event
While resizing the node during the interaction, the size change event can be used to do the customization.
The following code example explains how to get the sizeChange
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:sizeChange="sizeChange"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Resize node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const sizeChange = function () {
if (args.state === 'Completed') {
console.log('Size Changed');
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:sizeChange="sizeChange"
></ejs-diagram>
</div>
</template>
<script>
import {
DiagramComponent
} from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Resize node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
sizeChange: (args) => {
if (args.state === 'Completed') {
console.log('Size Changed');
}
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
You can prevent resizing by setting the cancel
property of SizeChangeEventArgs
to true, as shown in the code snippet below.
sizeChange: function (args: ISizeChangeEventArgs) {
if (args.state == 'Progress') {
//Prevents resizing
args.cancel = true;
}
},
Rotate change event
While rotating the node during the interaction, the rotate change event can be used to do the customization.
The following code example explains how to get the rotateChange
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:rotateChange="rotateChange"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Rotate node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const rotateChange = function () {
if (args.state === 'Completed') {
console.log('Rotate Changed');
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:rotateChange="rotateChange"
></ejs-diagram>
</div>
</template>
<script>
import {
DiagramComponent
} from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Rotate node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
rotateChange: (args) => {
if (args.state === 'Completed') {
console.log('Rotate Changed');
}
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
You can prevent rotation by setting the cancel
property of RotationEventArgs
to true, as shown in the code snippet below.
rotateChange: function (args: IRotationEventArgs) {
if (args.state == 'Progress') {
//Prevents rotation
args.cancel = true;
}
},
Property change event
Triggers when there is any property change occurred for the node. The following code example explains how to get the propertyChange
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:propertyChange="propertyChange"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const propertyChange = function () {
console.log(args.newValue);
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:propertyChange="propertyChange"
></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
propertyChange: (args) => {
console.log(args.newValue);
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
Collection change event
Triggers when the node is added or removed in diagram dynamically.
The following code example explains how to get the collectionChange
event in the diagram.
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:collectionChange="collectionChange"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const add = function () {
diagram.value.ej2Instances.add(nodes[0]);
}
const collectionChange = function () {
if (args.state === 'Changed') {
alert('Collection changed');
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<button @click="add">add</button>
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:collectionChange="collectionChange"
></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
// Position of the node
offsetX: 250,
offsetY: 250,
// Size of the node
width: 100,
height: 100,
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
collectionChange: (args) => {
if (args.state === 'Changed') {
alert('Collection changed');
}
},
};
},
methods: {
add() {
this.$refs.diagram.ej2Instances.add(nodes[0]);
},
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
You can prevent changes to the diagram collection, such as adding or deleting nodes, by setting the cancel
property of CollectionChangeEventArgs
to true, as shown in the code snippet below.
collectionChange: function (args: ICollectionChangeEventArgs) {
if (args.state == 'Changing') {
//Prevents collection change - Prevents Adding or deleting nodes
args.cancel = true;
}
},
Mouse Events
Mouse enter event
The mouseEnter
is triggered when the mouse enters the node surface.
Mouse over event
The mouseOver
is triggered when the mouse hover over the node surface.
Mouse leave event
The mouseLeave
is triggered when the mouse leaves the node surface.
The following code example shows how to handle these events in the diagram and change the color of a node based on these events:
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:mouseEnter="mouseEnter"
:mouseLeave="mouseLeave"
:mouseOver="mouseOver"
></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const nodes = [
{
id: 'Start',
width: 100,
height: 100,
offsetX: 250,
offsetY: 200,
annotations: [
{
content: 'Node',
},
],
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
const width = "100%";
const height = "700px";
const add = function () {
diagram.value.ej2Instances.add(nodes[0]);
}
const mouseEnter = function () {
args.actualObject.style.fill = 'red';
this.$refs.diagram.ej2Instances.dataBind();
}
const mouseLeave = function () {
args.element.style.fill = '#6BA5D7';
this.$refs.diagram.ej2Instances.dataBind();
}
const mouseOver = function () {
//Cutomize
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram
id="diagram"
ref="diagram"
:width="width"
:height="height"
:nodes="nodes"
:mouseEnter="mouseEnter"
:mouseOver="mouseOver"
:mouseLeave="mouseLeave"
></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
let nodes = [
{
// Position of the node
offsetX: 250,
offsetY: 250,
// Size of the node
width: 100,
height: 100,
style: {
fill: '#6BA5D7',
strokeColor: 'white',
},
},
];
export default {
name: 'App',
components: {
'ejs-diagram': DiagramComponent,
},
data() {
return {
width: '100%',
height: '700px',
nodes: nodes,
mouseEnter: (args) => {
args.actualObject.style.fill = 'red';
this.$refs.diagram.ej2Instances.dataBind();
},
mouseLeave: (args) => {
args.element.style.fill = '#6BA5D7';
this.$refs.diagram.ej2Instances.dataBind();
},
mouseOver: (args) => {
//Cutomize
},
};
},
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>