1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
"xAxis" : {
"type" : "category",
"labels" : {
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
}
}
},
"tooltip" : {
"pointFormat" : "<b>{point.y:.0f}</b>"
},
"title" : {
"text" : "The Weekly Challenge Contributions [2019 - 2024]"
},
"series" : [
{
"dataLabels" : {
"style" : {
"fontSize" : "13px",
"fontFamily" : "Verdana, sans-serif"
},
"align" : "right",
"color" : "#FFFFFF",
"format" : "{point.y:.0f}",
"y" : 10,
"enabled" : "true",
"rotation" : -90
},
"data" : [
[
"Blog",
4374
],
[
"Perl",
12891
],
[
"Raku",
7432
]
],
"name" : "Contributions"
}
],
"chart" : {
"type" : "column"
},
"yAxis" : {
"title" : {
"text" : null
},
"min" : 0
},
"legend" : {
"enabled" : "false"
},
"subtitle" : {
"text" : "Last updated at 2024-01-07 02:19:07 GMT"
}
}
|