From 41baccbf1440fcd9cd88abc370bec2cb462ae278 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 8 Sep 2020 03:22:10 +0100 Subject: - Raku solution to "Fibonacci Sum" task of week #077. --- stats/pwc-language-breakdown-summary.json | 56 +++++++++++++++---------------- 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'stats/pwc-language-breakdown-summary.json') diff --git a/stats/pwc-language-breakdown-summary.json b/stats/pwc-language-breakdown-summary.json index d37978fe79..2388e1e6e0 100644 --- a/stats/pwc-language-breakdown-summary.json +++ b/stats/pwc-language-breakdown-summary.json @@ -1,10 +1,27 @@ { "subtitle" : { - "text" : "Last updated at 2020-09-08 01:51:09 GMT" + "text" : "Last updated at 2020-09-08 02:21:37 GMT" + }, + "chart" : { + "type" : "column" + }, + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontSize" : "13px", + "fontFamily" : "Verdana, sans-serif" + } + } + }, + "legend" : { + "enabled" : "false" + }, + "tooltip" : { + "pointFormat" : "{point.y:.0f}" }, "series" : [ { - "name" : "Contributions", "data" : [ [ "Blog", @@ -16,48 +33,31 @@ ], [ "Raku", - 2097 + 2098 ] ], + "name" : "Contributions", "dataLabels" : { + "format" : "{point.y:.0f}", + "align" : "right", "color" : "#FFFFFF", + "rotation" : -90, + "y" : 10, "enabled" : "true", - "format" : "{point.y:.0f}", "style" : { "fontSize" : "13px", "fontFamily" : "Verdana, sans-serif" - }, - "align" : "right", - "rotation" : -90, - "y" : 10 + } } } ], - "xAxis" : { - "labels" : { - "style" : { - "fontFamily" : "Verdana, sans-serif", - "fontSize" : "13px" - } - }, - "type" : "category" - }, - "tooltip" : { - "pointFormat" : "{point.y:.0f}" - }, "yAxis" : { - "min" : 0, "title" : { "text" : null - } + }, + "min" : 0 }, "title" : { "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" - }, - "chart" : { - "type" : "column" - }, - "legend" : { - "enabled" : "false" } } -- cgit