Whenever I select an item on the canvas, it is automatically displayed on top, leaving all objects behind. Is there any way to stop this?
Set the preserveObjectStacking "property of fabricjs property to true to stop output to selected objects.
var canvas = new fabric.Canvas('canvas'); canvas. preserveObjectStacking = true;