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
3
var themeSettings = {
4
"column":{
5
"tooltip": {
6
"positionMode": "point",
7
"hideDelay": 3000,
8
"offsetX": 0,
9
"fontFamily": "Menlo",
10
"fontSize": 11
11
}
12
}
13
};
14
15
var data = [
16
["John", 10000],
17
["Jake", 12000],
18
["Peter", 18000],
19
["James", 11000],
20
["Mary", 9000]
21
];
22
23
anychart.theme(themeSettings);
24
25
// chart type
26
var chart = anychart.column(data);
27
28
// set title
29
chart.title("Tooltip Themes");
30
31
// draw
32
chart.container("container");
33
chart.draw();
34
});