This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// load canvas with id 'c' | |
const canvas = new fabric.Canvas('c'); | |
// use canvas height as the height limit | |
var limit = canvas.height; | |
var text = new fabric.Textbox('Some very long text'); | |
// set initial values | |
text.set({ | |
top: margin, | |
width: canvas.width, |