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
// load a json data file
4
anychart.data.loadJsonFile('https://gist.githubusercontent.com/awanshrestha/ff3ae5c08238b1f4f950f022aaad2f6f/raw/3766915befaeea7a32f3d41fdc2ece110e7543d7/circle-packing-chart.json',
5
function(data) {
6
7
// add the data
8
var treeData = anychart.data.tree(data, 'as-table');
9
10
// create a circle packing chart instance
11
var chart = anychart.circlePacking(treeData);
12
13
// customize the tooltip
14
chart
15
.tooltip()
16
.useHtml(true)
17
.format(function () {
18
var src = this.item.get('industry');
19
if (src) {
20
return '<div>'
21
+ '<span>Name: ' + this.name + '</span> <br/>'
22
+ '<span>Net worth in billions USD: ' + this.value + '</span> <br/>'
23
+ '<span>Source: ' + this.item.get('source') + '</span>'
24
+ '</div>'
25
}
26
return '<span>' + this.value.toFixed(2) + ' billion USD</span>';
27
});
28
29
// add a chart title
30
chart.title("100 Richest People, According to Forbes");
31
32
// change the appearance
33
chart.background('#f6f6f6');
34
chart
35
.hovered()
36
.stroke(function () {
37
return {
38
thickness: 2,
39
};
40
});
41
chart
42
.stroke(function () {
43
return {
44
thickness: 1,
45
};
46
});
47
48
// specify the container element id
49
chart.container('container');
50
51
// initiate the drawing of the chart
52
chart.draw();
53
54
}
55
);
56
});