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([1.1, 1.6, 1.4, 1.9]);
3
4
var yAxis = chart.yAxis();
5
6
// Set title settings.
7
yAxis.title({text: "New title for the axis", fontSize: 16});
8
9
chart.title("Set title parameters as an object");
10
chart.container("container");
11
chart.draw();
12
});