Skip to main content
SelectionOptions
Options for the behaviour of a selection.
NameTypeDescription
autoFill?booleanDefaults to false. If true, and a generator is supplied,
generator?SelectionGeneratorOptional function that can be called to fill the selection. You'd use this when you are rendering individual selections and you need to be able to refresh the whole view based on some change in the data model.
lazy?booleanIf true, the selection will not populate itself as soon as it is constructed. Otherwise, and this is the default behaviour, it will.
mode?SelectionModeDefaults to SelectionModes.mixed, meaning any combination of nodes, groups and edges may be present in the selection at a given point in time.
onBeforeReload?FunctionOptional. called before the selection is cleared at the beginning of a reload, when a generator is supplied.
onClear?FunctionOptional function to call when the selection is cleared.
onReload?FunctionOptional. called after a reload when a generator was supplied.