CanvasRenderingContext2D.direction

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

The CanvasRenderingContext2D.direction property of the Canvas 2D API specifies the current text direction used when drawing text.

Syntax

JavaScript
<var>ctx.direction = "ltr" || "rtl" || "inherit";</var>

Options

Possible values:

ltr
The text direction is left-to-right.
rtl
The text direction is right-to-left.
inherit
The text direction is inherited from the <canvas> element or the Document as appropriate.

The default value is inherit.

Examples

Using the direction property

This is just a simple code snippet using the direction property to set a different text baseline setting.

HTML

HTML
<canvas id="canvas"></canvas>

JavaScript

JavaScript
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");

ctx.font = "48px serif";
ctx.direction = "ltr";
ctx.strokeText("Hello world", 0, 100);

Edit the code below and see your changes update live in the canvas:

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'CanvasRenderingContext2D.direction' in that specification.
Living Standard  

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) [1] Not supported Not supported Not supported (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) Not supported Not supported Not supported (Yes)

[1] This feature is deactivated by default. Use the ExperimentalCanvasFeatures feature flag to enable it.

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/canvasrenderingcontext2d/direction

API Canvas CanvasRenderingContext2D Experimental Property Reference