Box
Map
Vue
A newer version of this page is available. Switch to the current version.

jQuery Diagram - gridSize

Specifies the grid pitch.

Type:

Number

|

Object

When the showGrid property is set to true, the Diagram UI component displays grid lines that help users align diagram elements. Use the gridSize property to specify the grid pitch.

The units property specifies the measurement unit.

jQuery
JavaScript
$(function() {
    $("#diagram").dxDiagram({
        viewUnits: "cm",
        units: "cm",
        gridSize: {
            value: 2,
            items: [1, 2, 3]
        },
        // or
        // gridSize: 2,
    });
});
See Also

items

An array that specifies the Grid Size combobox items on Properties panel.

Type:

Array<Number>

value

Specifies the grid's pitch.

Type:

Number