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
60
1
anychart.onDocumentReady(function() {
2
3
// set data and define chart type
4
var dataSet = anychart.data.set([
5
{name: "John", value: 10000},
6
{name: "Jake", value: 12000},
7
{name: "Peter", value: 16000},
8
{name: "Alex", value: 11000},
9
{name: "Tom", value: 13000},
10
{name: "Julia", value: 18000}
11
]);
12
13
// variable for total sales
14
var total = 0;
15
16
for (var i = 0; i<dataSet.mapAs().getRowsCount();i++)
17
total+=dataSet.mapAs().get(i,"value");
18
19
var chart = anychart.pie(dataSet);
20
21
// legend settings
22
var legend = chart.legend();
23
// enables legend
24
legend.enabled(true);
25
// set legend position
26
legend.position("left");
27
// set legend align
28
legend.align("top");
29
// legend items layout
30
legend.itemsLayout("vertical");
31
// adjust legend items
32
legend.itemsFormatter(function(items){
33
// push into items array
34
items.push({
35
// set item text
36
text: "Total: "+total.toString(),
37
// disable icon for a new item
38
iconEnabled: false,
39
// bold text of the item
40
fontWeight: 900
41
});
42
// return items array
43
return items;
44
});
45
46
// configure tooltip considering new item
47
var tooltip = chart.legend().tooltip();
48
tooltip.enabled(true);
49
tooltip.format(function(){
50
// to avoid failing on "total" item
51
if(this.meta.pointValue === undefined)
52
return this.value;
53
// for all other points
54
return this.value+"\n"+this.meta.pointValue.toString();
55
});
56
57
// set container and draw chart
58
chart.container("container");
59
chart.draw();
60
});