I am developing chart PoC with HTML5 canvas.
the each text AA, BB and so on are all canvas. I am generating them by hvar canvas = $("<canvas></canvas>").appendTo(elementDiv);
and using loop to display the text.
I am using ctx.fillText(txt, x - txt.length * 2, 18);
to display the text.
Here, my question is how to make them as vertical text.