Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the KineticJS text objects with gradient fills etc to act as buttons. But now that the verticalAlign property was recently removed, how do I vertically align my text in its bounding box? Why was the property removed if there are no alternatives?

share|improve this question

3 Answers

verticalAlign property of a text did not make any sense to me.

Text is a not a Kinetic.Container but a Kinetic.Shape.

IMO, a Kinetic.Shape should not have vertialAlign. It's like a Circle has verticalAlign. Aligned to what? aligned to any container, layer or stage? see what I am saying?

That's why it is removed, i guess, and hopefully, those property should be added back to KineticContainer along with horizontalAlign.

If you want your text vertically aligned to a rectangle or circle. At this point, you need to set y position of your text to vertically align to your container.

If your container is 100 pixel high and your text is 30px high, then you will get y position as 35.

var newY= (box.getHeight()-text.getHeight())/2
text.setY(newY);
layer.draw();
share|improve this answer

While this is not much of a solution you could add '\n' to the beginning of you text to create a blank line and move the text down.

You can do add lines dynamically based on certain conditions, like height. Example:

//if text box height is this size, move text down
if( text.getHeight() > 200)
     text.setText('\n\n' + text.getText() );

You could also move the background rectangle behind the text to make it appear vertically aligned.

share|improve this answer

According to this, support has been temporarily dropped, and will hopefully be added in the near future.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.