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
// chart type
4
var chart = anychart.pie([
5
["John" , 10000],
6
["Jake" , 12000],
7
["Peter" , 18000],
8
["James" , 11000],
9
["Mary" , 9000]
10
]);
11
12
// set title
13
chart.title("Tooltip Prefix");
14
15
// tooltip settings
16
var tooltip = chart.tooltip();
17
tooltip.valuePrefix("$");
18
19
// draw
20
chart.container("container");
21
chart.draw();
22
});