An options object for initializing a selection model.

interface IOptions {
    dataModel: DataModel;
    selectionMode?: SelectionMode;
}

Properties

dataModel: DataModel

The data model for the selection model.

selectionMode?: SelectionMode

The selection mode for the model.

The default is 'cell'.