From 1aef37c04cf3d2089975aff0ff4f3deeac0ffdbd Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Tue, 15 Jun 2021 17:16:22 +0100 Subject: - Added solutions to week 115 by Jaldhar H. Vyas. --- pwc-language-breakdown-summary.json | 63 +++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 pwc-language-breakdown-summary.json (limited to 'pwc-language-breakdown-summary.json') diff --git a/pwc-language-breakdown-summary.json b/pwc-language-breakdown-summary.json new file mode 100644 index 0000000000..33ce407578 --- /dev/null +++ b/pwc-language-breakdown-summary.json @@ -0,0 +1,63 @@ +{ + "chart" : { + "type" : "column" + }, + "series" : [ + { + "dataLabels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + }, + "enabled" : "true", + "y" : 10, + "format" : "{point.y:.0f}", + "align" : "right", + "color" : "#FFFFFF", + "rotation" : -90 + }, + "name" : "Contributions", + "data" : [ + [ + "Blog", + 1643 + ], + [ + "Perl", + 5524 + ], + [ + "Raku", + 3500 + ] + ] + } + ], + "tooltip" : { + "pointFormat" : "{point.y:.0f}" + }, + "yAxis" : { + "title" : { + "text" : null + }, + "min" : 0 + }, + "legend" : { + "enabled" : "false" + }, + "xAxis" : { + "type" : "category", + "labels" : { + "style" : { + "fontFamily" : "Verdana, sans-serif", + "fontSize" : "13px" + } + } + }, + "title" : { + "text" : "Perl Weekly Challenge Contributions [2019 - 2020]" + }, + "subtitle" : { + "text" : "Last updated at 2021-06-15 16:16:05 GMT" + } +} -- cgit