HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var chart = anychart.line([2, 8, 3, 4, 9], [5, 2, 6, 1]);
3
4
var title = chart.title();
5
title.background({stroke: "black"});
6
title.textIndent(20);
7
title.fontSize(14);
8
title.enabled(true);
9
title.text("The current \n text direction is rtl");
10
// Sets text direction.
11
title.textDirection("rtl");
12
13
chart.container("container");
14
chart.draw();
15
});