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>Total net worth: ' + this.value.toFixed(2) + ' billion USD</span>';
27
});
28
29
// add a chart title
30
chart
31
.title()
32
.enabled(true)
33
.useHtml(true)
34
.text(
35
'<span style = "color: #112B3C; font-weight: 600; font-size: 18px;">100 Richest People, According to Forbes</span>'
36
);
37
38
// customize the appearance
39
chart.background('#f6f6f6');
40
chart
41
.stroke(function () {
42
return {
43
thickness: 1,
44
};
45
});
46
chart
47
.hovered()
48
.stroke(function () {
49
return {
50
thickness: 2,
51
};
52
});
53
54
// customize the labels (country names)
55
chart
56
.labels()
57
.fontSize('14')
58
.fontColor('#696969')
59
.textShadow('none')
60
.anchor('center-top').offsetY('-3%');
61
62
chart.labels()
63
.background()
64
.enabled(true)
65
.fill("#f6f6f6 0.8")
66
.stroke("#888888")
67
.corners(5);
68
69
// specify the container element id
70
chart.container('container');
71
72
// initiate the drawing of the chart
73
chart.draw();
74
75
}
76
);
77
});