Scroll settings in EJ2 Vue Diagram control
28 Mar 202524 minutes to read
The diagram can be scrolled using both the vertical and horizontal scrollbars. Additionally, the mouse wheel can be used to scroll the diagram. The diagram’s scrollSettings
allow you to read the current scroll status, view port size, current zoom level, and zoom factor. These settings also provide the capability to programmatically control the scrolling of the diagram.
Access and Customize Scroll Settings
Scroll settings in a diagram allow you to access and customize various properties such as horizontalOffset
, verticalOffset
, viewPortWidth
, viewPortHeight
, currentZoom
, zoomFactor
, maxZoom
, minZoom
, scrollLimit
, canAutoScroll
, autoScrollBorder
, padding
, scrollableArea
.
These properties enable you to read and adjust the scroll status, scroll offset, zoom levels, and more. For a comprehensive overview of these properties, refer to the Scroll Settings
Define scroll offset
The diagram allows you to pan before loading, ensuring that any desired region of a large diagram is visible. You can programmatically pan the diagram using the horizontalOffset
and verticalOffset
properties of the scroll settings. The following code illustrates how to programmatically pan the diagram upon initialization also defined scrollLimit as ‘Infinity’ to scroll infinitely in diagram. To learn more about scrollLimit refer to scrollLimit
In the example below, the vertical scrollbar is scrolled down by 100 px, and the horizontal scrollbar is scrolled to the right by 100 px.
<template>
<div id="app">
<ejs-diagram id="diagram" ref="diagram" :width='width' :height='height' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script setup>
import { onMounted, ref } from "vue";
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
const diagram = ref(null);
const width = "750px";
const height = "500px";
const scrollSettings = {
//To scroll the diagram infinitely
scrollLimit: 'Infinity',
};
const rulerSettings = {
showRulers: true
};
onMounted(function () {
const diagramInstance = diagram.value.ej2Instances;
diagramInstance.scrollSettings.horizontalOffset = 100;
diagramInstance.scrollSettings.verticalOffset = 100;
diagramInstance.dataBind();
})
</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' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent
},
data() {
return {
width: "100%",
height: "500px",
scrollSettings: {
//To scroll the diagram infinitely
scrollLimit: 'Infinity',
},
rulerSettings: {
showRulers: true
}
}
},
mounted: function () {
const diagramInstance = this.$refs.diagram.ej2Instances;
diagramInstance.scrollSettings.horizontalOffset = 100;
diagramInstance.scrollSettings.verticalOffset = 100;
diagramInstance.dataBind();
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
Update scroll offset at runtime
There are several ways to update the scroll offset at runtime:
-
Scrollbar
: Use the horizontal and vertical scrollbars of the diagram. -
Mousewheel
: Scroll vertically with the mouse wheel. Hold the Shift key while scrolling to scroll horizontally. -
Pan Tool
: Activate the ZoomPantool
in the diagram to scroll by panning. -
Touch
: Use touch pad gestures for scrolling.
Programmatically update Scroll Offset
You can programmatically change the scroll offsets of diagram by customizing the horizontalOffset
and verticalOffset
of Scroll Settings
at runtime. The following code illustrates how to change the scroll offsets at runtime.
<template>
<div id="app">
<ejs-button ref="updateScrollSettings" id="updateScrollSettings" >Update Scroll Settings</ejs-button>
<ejs-diagram id="diagram" ref="diagram" :width='width' :height='height' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script setup>
import { onMounted, ref } from "vue";
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
import { ButtonComponent as EjsButton } from '@syncfusion/ej2-vue-buttons';
const diagram = ref(null);
const updateScrollSettings = ref(null);
const width = "750px";
const height = "350px";
const rulerSettings = { showRulers: true };
const scrollSettings = { scrollLimit: 'Infinity' };
onMounted(function () {
const diagramInstance = diagram.value.ej2Instances;
const updateScrollSettingsInstance = updateScrollSettings.value.ej2Instances;
updateScrollSettingsInstance.element.onclick = () => {
diagramInstance.scrollSettings.horizontalOffset = 200;
diagramInstance.scrollSettings.verticalOffset = 200
diagramInstance.dataBind();
}
});
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-button ref="updateScrollSettings" id="updateScrollSettings" >Update Scroll Settings</ejs-button>
<ejs-diagram id="diagram" ref="diagram" :width='width' :height='height' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
import { ButtonComponent } from '@syncfusion/ej2-vue-buttons';
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent,
'ejs-button': ButtonComponent,
},
data() {
return {
width: "100%",
height: "500px",
rulerSettings: { showRulers: true },
scrollSettings: { scrollLimit: 'Infinity' },
}
},
mounted: function () {
const diagramInstance = this.$refs.diagram.ej2Instances;
const updateScrollSettings = this.$refs.updateScrollSettings.ej2Instances;
//Updates scroll settings
updateScrollSettings.element.onclick = () => {
diagramInstance.scrollSettings.horizontalOffset = 200;
diagramInstance.scrollSettings.verticalOffset = 200
diagramInstance.dataBind();
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
Update zoom at runtime
Zoom using mouse wheel
Another way to zoom in and out the diagram is by using the mouse wheel. This method is a quick and convenient way to zoom in and out without having to use any additional tools or gestures.
-
Zoom in: Press Ctrl+mouse wheel, then scroll upward.
-
Zoom out: Press Ctrl+mouse wheel, then scroll downward.
Zoom using Keyboard Shortcuts
Using keyboard shortcuts is a quick and easy way to zoom the diagram without having to use the mouse or touch pad.
-
Zoom in: Press Ctrl and the plus(+) key.
-
Zoom out: Press Ctrl and the minus(-) key.
Programmatically update zoom
You can programmatically change the current zoom of diagram by utilizing the zoomTo
public method.
ZoomOptions
The zoomTo
method takes one parameter zoomOptions
. In that zoomOptions we can specify the focusPoint
, type
and zoomFactor
The following example shows how to zoom-in and zoom-out the diagram using zoomTo method
<template>
<div id="app">
<ejs-button ref="zoomIn" id="zoomIn" >Zoom In</ejs-button>
<ejs-button ref="zoomOut" id="zoomOut" >Zoom Out</ejs-button>
<ejs-diagram ref="diagram" id="diagram" :width='width' :height='height' :nodes='nodes' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script setup>
import { onMounted, ref } from "vue";
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
import { ButtonComponent as EjsButton } from '@syncfusion/ej2-vue-buttons';
const nodes = [{
offsetX: 300,
offsetY: 300,
}];
const diagram = ref(null);
const zoomIn = ref(null);
const zoomOut = ref(null);
const width = "750px";
const height = "350px";
const rulerSettings = { showRulers: true };
const scrollSettings = { scrollLimit: 'Infinity' };
onMounted(function () {
const diagramInstance = diagram.value.ej2Instances;
const zoomInInstance = zoomIn.value.ej2Instances;
const zoomOutInstance = zoomOut.value.ej2Instances;
zoomInInstance.element.onclick = () => {
let zoomOptions = {
type: 'ZoomIn',
zoomFactor: 0.2,
focusPoint: { x: 0.5, y: 0.5 },
};
diagramInstance.zoomTo(zoomOptions);
diagramInstance.dataBind();
}
zoomOutInstance.element.onclick = () => {
let zoomOptions = {
type: 'ZoomOut',
zoomFactor: 0.2,
focusPoint: { x: 0.5, y: 0.5 },
};
diagramInstance.zoomTo(zoomOptions);
diagramInstance.dataBind();
}
});
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-button ref="zoomIn" id="zoomIn" >Zoom In</ejs-button>
<ejs-button ref="zoomOut" id="zoomOut" >Zoom Out</ejs-button>
<ejs-diagram ref="diagram" id="diagram" :width='width' :height='height' :nodes='nodes' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
import { ButtonComponent } from '@syncfusion/ej2-vue-buttons';
let nodes = [{
offsetX: 300,
offsetY: 300,
}];
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent,
'ejs-button': ButtonComponent,
},
data() {
return {
width: "100%",
height: "700px",
nodes: nodes,
rulerSettings: { showRulers: true },
scrollSettings: { scrollLimit: 'Infinity' },
}
},
mounted: function () {
const diagramInstance = this.$refs.diagram.ej2Instances;
const zoomIn = this.$refs.zoomIn.ej2Instances;
const zoomOut = this.$refs.zoomOut.ej2Instances;
zoomIn.element.onclick = () => {
let zoomOptions = {
type: 'ZoomIn',
zoomFactor: 0.2,
focusPoint: { x: 0.5, y: 0.5 },
};
diagramInstance.zoomTo(zoomOptions);
diagramInstance.dataBind();
}
zoomOut.element.onclick = () => {
let zoomOptions = {
type: 'ZoomOut',
zoomFactor: 0.2,
focusPoint: { x: 0.5, y: 0.5 },
};
diagramInstance.zoomTo(zoomOptions);
diagramInstance.dataBind();
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
For more information on various ways to zoom and pan the diagram, refer to zoomPan with various ways
AutoScroll
The autoscroll feature automatically scrolls the diagram when a node or connector is moved beyond its boundary. This ensures that the element remains visible during operations like dragging, resizing, and selection.
The autoscroll behavior triggers automatically when any of the following actions occur towards the edges of the diagram:
- Node dragging or resizing
- Connector control point editing
- Rubber band selection
The client-side event ScrollChange
is triggered when autoscroll occurs, allowing for customizations. Refer scrollChange-event
for more information.
Autoscroll behavior can be enabled or disabled using the canAutoScroll
property of the diagram.
Autoscroll border
The autoscroll border defines the maximum distance from the mouse pointer to the diagram edge that triggers autoscroll. By default, this distance is set to 15 pixels for all sides (left, right, top, and bottom). You can adjust this using the autoScrollBorder
property of the scroll settings.
The following example demonstrates how to configure autoscroll:
<template>
<div id="app">
<ejs-diagram id="diagram" :width='width' :height='height' :nodes='nodes' :connectors='connectors' :scrollSettings='scrollSettings'
:rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script setup>
import { provide } from "vue";
import { DiagramComponent as EjsDiagram, ConnectorConstraints, ConnectorEditing } from '@syncfusion/ej2-vue-diagrams';
const nodes = [{
id: 'node1',
width: 100,
height: 60,
offsetX: 200,
offsetY: 300,
annotations: [
{ content: 'Drag or resize the node to activate autoscroll' },
],
}];
const connectors = [{
id: 'con1',
type: 'Bezier',
segments: [{ type: 'Bezier', point: { x: 150, y: 100 } }],
sourcePoint: { x: 100, y: 100 },
targetPoint: { x: 300, y: 100 },
annotations: [
{
content: 'Adjust control point or end point to autoScroll',
alignment: 'After',
},
],
constraints:
ConnectorConstraints.Default |
ConnectorConstraints.DragSegmentThumb,
}]
const width = "750px";
const height = "700px";
const rulerSettings = { showRulers: true };
const scrollSettings = {
canAutoScroll: true,
scrollLimit: 'Infinity',
autoScrollBorder: {
left: 100,
right: 100,
top: 100,
bottom: 100
}
}
provide('diagram', [ConnectorEditing]);
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram id="diagram" :width='width' :height='height' :nodes='nodes' :connectors='connectors' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent, ConnectorConstraints, ConnectorEditing } from '@syncfusion/ej2-vue-diagrams';
let nodes = [{
id: 'node1',
width: 100,
height: 60,
offsetX: 200,
offsetY: 300,
annotations: [
{ content: 'Drag or resize the node to activate autoscroll' },
],
}];
let connectors = [{
id: 'con1',
type: 'Bezier',
segments: [{ type: 'Bezier', point: { x: 150, y: 100 } }],
sourcePoint: { x: 100, y: 100 },
targetPoint: { x: 300, y: 100 },
annotations: [
{
content: 'Adjust control point or end point to autoScroll',
alignment: 'After',
},
],
constraints:
ConnectorConstraints.Default |
ConnectorConstraints.DragSegmentThumb,
}];
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent
},
data() {
return {
width: "100%",
height: "700px",
nodes: nodes,
connectors: connectors,
//Enables ruler to see the scroll offset
rulerSettings: { showRulers: true },
scrollSettings: {
canAutoScroll: true,
//Enable autoScroll
scrollLimit: 'Infinity',
//Defines the autoScroll border of all the sides of diagram
autoScrollBorder: {
left: 100,
right: 100,
top: 100,
bottom: 100
}
},
}
},
provide: {
diagram: [ConnectorEditing]
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
NOTE
To use auto scroll the scrollLimit should be set as ‘Infinity’
Controlling Autoscroll Speed
You can control how often the scrolling needs to be performed automatically in the Diagram component during the auto-scrolling behavior. You can now adjust the frequency, ranging from slow and smooth to quick and rapid, to suit their preferences. To configure, set the value in milliseconds to the autoScrollFrequency
property within the scrollSettings class, allowing precise control over how often auto-scrolling occurs.
Scroll limit
The scrollLimit
allows you to define the scrollable region of the diagram. It includes the following options:
-
Infinity
: Allows scrolling in all directions without any restriction. -
Diagram
: Allows scrolling within the diagram region. -
Limited
: Allows scrolling within a specified scrollable area.
The scrollLimit
property in scroll settings helps to define these limits.
Scrollable Area
Scrolling beyond a particular rectangular area can be restricted by using the scrollableArea
property in scrollSettings
. To restrict scrolling beyond a custom region, set the scrollLimit to “limited” and define the desired bounds in scrollableArea
property.
The following code example illustrates how to specify the scroll limit and customize the scrollable area.
<template>
<div id="app">
<div style="display: flex; align-items: center; margin-bottom: 10px;">
<label style="margin-right: 10px;">Scrollable Area</label>
<ejs-dropdownlist id='scrollableArea' ref='scrollableArea' :enabled=true :value='scrollableAreaValue' :dataSource='scrollableArea' @change="onScrollableAreaChange"/>
</div>
<ejs-diagram id="diagram" ref="diagram" :width='width' :height='height' :nodes='nodes' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'
></ejs-diagram>
</div>
</template>
<script setup>
import { onMounted, ref } from "vue";
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
import { DropDownListComponent as EjsDropdownlist } from "@syncfusion/ej2-vue-dropdowns";
let nodes = [{
id: 'Start',
width: 100,
height: 100,
offsetX: 300,
offsetY: 100,
}];
const diagram = ref(null);
const width = "750px";
const height = "350px";
// set the autoScrollBorder
const scrollSettings = {
canAutoScroll: true,
//Sets the scroll limit
scrollLimit: 'Limited',
//Sets the scrollable Area
scrollableArea: {
x: 0,
y: 0,
width: 1000,
height: 1000
}
}
const rulerSettings = { showRulers: true };
const scrollableArea = [
{ shape: 'Limited', text: 'Limited' },
{ shape: 'Infinity', text: 'Infinity' },
{ shape: 'Diagram', text: 'Diagram' },
];
function onScrollableAreaChange(args) {
const diagramInstance = diagram.value.ej2Instances;
diagramInstance.scrollSettings.scrollLimit = args.itemData.shape;
diagramInstance.dataBind();
}
const scrollableAreaValue = 'Limited';
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<div style="display: flex; align-items: center; margin-bottom: 10px;">
<label style="margin-right: 10px;">Scrollable Area</label>
<ejs-dropdownlist id='scrollableArea' ref='scrollableArea' :enabled=true :value='scrollableAreaValue' :dataSource='scrollableArea' @change="onScrollableAreaChange"/>
</div>
<ejs-diagram id="diagram" ref="diagram" :width='width' :height='height' :nodes='nodes' :scrollSettings='scrollSettings' :rulerSettings='rulerSettings'
></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
import { DropDownListComponent } from "@syncfusion/ej2-vue-dropdowns";
let nodes = [{
id: 'Start',
width: 100,
height: 100,
offsetX: 300,
offsetY: 100,
}];
let data = [
{ shape: 'Limited', text: 'Limited' },
{ shape: 'Infinity', text: 'Infinity' },
{ shape: 'Diagram', text: 'Diagram' },
];
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent,
'ejs-dropdownlist': DropDownListComponent,
},
data() {
return {
width: "100%",
height: "500px",
nodes: nodes,
scrollableAreaValue: 'Limited',
scrollableArea: data,
//scrollableAreaChange: onScrollableAreaChange,
rulerSettings: { showRulers: true },
// set the autoScrollBorder
scrollSettings: {
canAutoScroll: true,
//Sets the scroll limit
scrollLimit: 'Limited',
//Sets the scrollable Area
scrollableArea: {
x: 0,
y: 0,
width: 1000,
height: 1000
}
},
}
},
methods: {
// Method to update scroll limit based on dropdown selection
onScrollableAreaChange(args) {
const diagramInstance = this.$refs.diagram.ej2Instances;
diagramInstance.scrollSettings.scrollLimit = args.itemData.shape;
diagramInstance.dataBind();
}
},
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
Scroll Padding
The padding
property of the scroll settings allows you to extend the scrollable region based on the scroll limit. This property is useful for adding extra space around the diagram content, making it easier to navigate and interact with elements near the edges.
The following code example illustrates how to set scroll padding for the diagram region:
<template>
<div id="app">
<ejs-diagram id="diagram" :width='width' :height='height' :nodes='nodes' :rulerSettings='rulerSettings'
:scrollSettings='scrollSettings'></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram } from '@syncfusion/ej2-vue-diagrams';
let nodes = [{
id: 'Start',
width: 100, height: 100,
offsetX: 250, offsetY: 250,
}];
const width = "750px";
const height = "500px";
const rulerSettings = { showRulers: true };
// set the autoScrollBorder
const scrollSettings = {
canAutoScroll: true,
scrollLimit: 'Infinity',
//Sets the scroll limit
padding: { left: 100, top: 100 }
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram id="diagram" :width='width' :height='height' :nodes='nodes' :rulerSettings='rulerSettings'
:scrollSettings='scrollSettings'></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent } from '@syncfusion/ej2-vue-diagrams';
let nodes = [{
id: 'Start',
width: 100, height: 100,
offsetX: 250, offsetY: 250,
}];
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent
},
data() {
return {
width: "100%",
height: "500px",
nodes: nodes,
rulerSettings: { showRulers: true },
// set the autoScrollBorder
scrollSettings: {
canAutoScroll: true,
scrollLimit: 'Infinity',
//Sets the scroll padding
padding: { left: 100, top: 100 }
},
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
Reset scroll
The reset
method resets the zoom and scroller offsets to their default values.
//Resets the scroll and zoom to default values
diagramInstance.reset();
UpdateViewport
The updateViewPort
method is used to update the dimensions of the diagram viewport.
//Updates diagram viewport
diagramInstance.updateViewPort();
Events
Scroll change event
The scrollChange
event is triggered whenever the scrollbar is updated. This can occur during actions such as zooming in, zooming out, using the mouse wheel, or panning. The following example shows how to capture the scrollChange
event.
<template>
<div id="app">
<ejs-diagram id="diagram" :width='width' :height='height' :nodes='nodes' :scrollSettings='scrollSettings'
:tool='tool' :scrollChange="scrollChange"></ejs-diagram>
</div>
</template>
<script setup>
import { DiagramComponent as EjsDiagram, DiagramTools } from '@syncfusion/ej2-vue-diagrams';
let nodes = [{
id: 'Start',
width: 100,
height: 100,
offsetX: 300,
offsetY: 100,
annotations: [{
id: 'label1',
content: 'Start'
}],
}];
const width = "750px";
const height = "500px";
const tool = DiagramTools.ZoomPan;
const scrollChange = (args) => {
//Triggers while interacting with diagram and performing undo-redo
console.log(args.panState);
};
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>
<template>
<div id="app">
<ejs-diagram id="diagram" :width='width' :height='height' :nodes='nodes' :scrollSettings='scrollSettings'
:tool='tool' :scrollChange="scrollChange"></ejs-diagram>
</div>
</template>
<script>
import { DiagramComponent, DiagramTools } from '@syncfusion/ej2-vue-diagrams';
let nodes = [{
id: 'Start',
width: 100,
height: 100,
offsetX: 300,
offsetY: 100,
annotations: [{
id: 'label1',
content: 'Start'
}],
}];
export default {
name: "App",
components: {
"ejs-diagram": DiagramComponent
},
data() {
return {
width: "100%",
height: "500px",
nodes: nodes,
tool: DiagramTools.ZoomPan,
scrollChange: (args) => {
//Triggers while interacting with diagram and performing undo-redo
console.log(args.panState);
}
}
}
}
</script>
<style>
@import "../node_modules/@syncfusion/ej2-vue-diagrams/styles/material.css";
</style>