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();
9
10
// set the minimum and maximum bubble sizes
11
chart.minBubbleSize("3%");
12
chart.maxBubbleSize("12%");
13
14
// name the axes
15
chart.xAxis().title("Year");
16
chart.yAxis().title("Views");
17
18
// set the intervals between the ticks
19
chart.xScale().ticks().interval(2);
20
chart.yScale().ticks().interval(2000000000);
21
22
// enable the grid
23
chart.yGrid(true).xGrid(true).xMinorGrid(true).yMinorGrid(true);
24
25
// separate the data into different series based on genre
26
var videos_shorts = data.filter(function(entry) {
27
return entry.genre === "Shorts";
28
});
29
var videos_music= data.filter(function(entry) {
30
return entry.genre === "Music";
31
});
32
var videos_comedy = data.filter(function(entry) {
33
return entry.genre === "Comedy";
34
});
35
var videos_children = data.filter(function(entry) {
36
return entry.genre === "Children";
37
});
38
39
// customize the appearance of each series
40
// series 1
41
var series1 = chart.bubble(videos_children).name("Children");
42
series1.normal().fill("#A0EA63", 0.9);
43
series1.hovered().fill("#A0EA63", 0.7);
44
series1.selected().fill("#9EE57C", 0.9);
45
series1.normal().stroke("#41a312", 1);
46
series1.hovered().stroke("#41a312", 2);
47
series1.selected().stroke("#41a312", 4);
48
// series 2
49
var series2 = chart.bubble(videos_shorts).name("Shorts");
50
series2.normal().fill("#FFFF00", 1);
51
series2.hovered().fill("#FFFF00", 0.8);
52
series2.selected().fill("#FFFF00", 0.3);
53
series2.normal().stroke("#FFC000", 1);
54
series2.hovered().stroke("#FFC000", 2);
55
series2.selected().stroke("#FFC000", 4);
56
// series 3
57
var series3 = chart.bubble(videos_comedy).name("Comedy");
58
series3.normal().fill("#DE3163", 0.5);
59
series3.hovered().fill("#DE3163", 0.3);
60
series3.selected().fill("#DE3163", 0.3);
61
series3.normal().stroke("#DE3163", 1);
62
series3.hovered().stroke("#DE3163", 2);
63
series3.selected().stroke("#DE3163", 2);
64
// series 4
65
var series4 = chart.bubble(videos_music).name("Music");
66
series4.normal().fill("#87C4F6", 0.85);
67
series4.hovered().fill("#87C4F6", 0.9);
68
series4.selected().fill("#55A0E5", 0.98);
69
series4.normal().stroke("#1069c2", 1);
70
series4.hovered().stroke("#1069c2", 2);
71
series4.selected().stroke("#1069c2", 4);
72
73
// prevent the bubbles from clipping
74
series1.clip(false);
75
series2.clip(false);
76
series3.clip(false);
77
series4.clip(false);
78
79
// add the legend
80
chart.legend(true).padding({bottom: 12 , top: 12});
81
82
// configure the tooltip
83
var tooltip = chart.tooltip();
84
tooltip.titleFormat("Title: {%title}");
85
tooltip.format("Year: {%x} \nViews: {%value} \nLikes: {%size} \nGenre: {%genre}");
86
87
// add a chart title
88
chart.title("Top 30 Most Liked YouTube Videos");
89
90
// set the container
91
chart.container("container");
92
93
// initiate the chart drawing
94
chart.draw();
95
96
})
97
98
});