HTMLcopy
1
<div id="container"></div>
CSScopy
8
1
html,
2
body,
3
#container {
4
width: 100%;
5
height: 100%;
6
margin: 0;
7
padding: 0;
8
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function() {
2
3
// load data
4
anychart.data.loadJsonFile("https://gist.githubusercontent.com/awanshrestha/8df51b9b1c44b2d1bd3ebeb0757b5fb0/raw/28ee08902d393e02278a7ef7e3461b33e34c6c90/Top-liked-YouTube-Videos.json",
5
function (data) {
6
7
// create a bubble chart
8
chart = anychart.bubble(data);
9
10
// set the minimum and maximum bubble sizes
11
chart.minBubbleSize("3%");
12
chart.maxBubbleSize("12%");
13
14
// add a chart title
15
chart.title("Top 30 Most Liked YouTube Videos");
16
17
// set the container
18
chart.container("container");
19
20
// initiate the chart drawing
21
chart.draw();
22
23
})
24
25
});