I cannot find a tutorial or documentation showing how to change canvas's textBaseline property in KineticJS. If you look in the Kinetic.Text documentation you won't find any mention of "base.." anything, and the Kinetic Text tutorial does not demonstrate its use either. Did textBaseline make it into KineticJS?
I did a jsFiddle here showing how textBaseline works on a raw canvas element, but I cannot figure out the property for doing the same thing in KineticJS. I know the documentation is rough for KineticJS; perhaps a property is there but just not mentioned?
NO - adjusting the Y coordinate is not an option due to scaling issues. Let's head that silliness off at the pass...
The following code should be placed using a bottom baseline, but as you can see in the fiddle, it uses "top".
var text_b = new Kinetic.Text({
x: 25,
y: 100.5,
text: 'Bottom',
fontSize: 18,
fontFamily: 'Verdana',
fill: 'black'
});