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, 1, 8, 3], [3, 1, 4, 5, 1]);
3
4
var tooltipSettings = chart.tooltip();
5
tooltipSettings.positionMode('point');
6
7
// Set tooltip display mode.
8
tooltipSettings.displayMode('separated');
9
10
chart.title('Set tooltip display mode');
11
chart.container('container');
12
chart.draw();
13
});