Skip to main content

Selection

When working with nodes in Orgvue it is possible to select nodes on the canvas and these will be indicated with a blue highlight along with a count of the nodes selected shown in the footer

alt text

You can access these selected nodes within Gizmo expressions using the selection function instead of nodes()

In its simplest form:

selection

return a list of the selected nodes

alt text

Count of selected nodesโ€‹

It is possible to then return a count of the nodes selected on canvas using

selection.count

alt text

Aggregate of selected nodesโ€‹

You can also use selection along with other properties and aggregate functions to provide insight on the selected nodes

e.g.

selection.currentsalary.max

alt text