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.sparkline([1.3, 2, 1.4, 4, 2.3, 6]);
3
4
// Get tooltip.
5
var tooltip = chart.tooltip();
6
7
tooltip.enabled(true);
8
tooltip.background({corners: 10});
9
tooltip.fontColor('#00ffff');
10
tooltip.fontWeight(600);
11
12
chart.title({text: 'Get and modify chart tooltip', orientation: 'top'});
13
chart.container('container');
14
chart.draw();
15
});