1

I am using fabric.js library. I want to vertically align text to ceneter of textbox area. Please see image.

Text

In image default cursor is align to top but i want it to center. Is there any property for text as valign like textalign?

Tried originY but no luck.

jpatel
  • 125
  • 10

1 Answers1

0

fabric.js 3.5.1 works with originY: 'center'
see FabricJS: Vertical Align text center

.... but the bounding-box has no "minimum height" setting
and paddingX / paddingY are not supported by fabric

to solve this in fabric,
you must override the render function, as shown in
Draw border on Fabric Textbox when it's not selected

but it should be easier to use html elements,
and put them over your canvas, as shown in
How to put an html element over a fabric.js element

milahu
  • 2,447
  • 1
  • 18
  • 25