I want to implement the drag and drop feature of row/ column only on single click. Right now I am only able to do it by double clicking the row.
<HotTable
ref={(ref) => (this.table = ref)}
data={this.data}
colHeaders={true}
rowHeaders={true}
dropdownMenu
filters
minSpareRows={1}
cell={[{ row: 0, col: 0, readOnly: true }]}
language=“zh-CN”
width=“50vw”
height=“50vh”
manualRowMove={true}
selectionMode=“single”
/>