How can I disable the click-drag multi selection in fabricjs?
In this image you can see the selection area with a red border:
.jpg
I want to prevent that kind of selection, but still allow single object selections.
How can I disable the click-drag multi selection in fabricjs?
In this image you can see the selection area with a red border:
https://i.sstatic/5olYf.jpg
I want to prevent that kind of selection, but still allow single object selections.
Share Improve this question asked Oct 1, 2014 at 20:05 localhostlocalhost 551 silver badge6 bronze badges1 Answer
Reset to default 9There is a property on fabric.Canvas
objects called selection
which controls this group-selection behavior.
var canvas = new fabric.Canvas('c', {width: 500, height: 500, selection: false});
//Or quite simply:
canvas.selection = false;