From c91c189ef04a8a2eaac6a21fe60bd2e1180881a3 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 29 Jul 2019 14:42:01 +0100 Subject: - Added solutios by Pete Houston. --- stats/pwc-current.json | 97 +++++++++++++++++++++++++++++--------------------- 1 file changed, 56 insertions(+), 41 deletions(-) (limited to 'stats/pwc-current.json') diff --git a/stats/pwc-current.json b/stats/pwc-current.json index 8ea10ba8d0..929436280e 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -1,78 +1,93 @@ { - "yAxis" : { - "title" : { - "text" : "Total Solutions" - } - }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } + "xAxis" : { + "type" : "category" }, - "tooltip" : { - "headerFormat" : "{series.name}
", - "followPointer" : 1, - "pointFormat" : "{point.name}: {point.y:f}
" + "chart" : { + "type" : "column" }, "series" : [ { - "name" : "Perl Weekly Challenge - 019", "colorByPoint" : 1, "data" : [ { + "y" : 2, "drilldown" : "Lubos Kolouch", - "name" : "Lubos Kolouch", - "y" : 2 + "name" : "Lubos Kolouch" }, { + "y" : 1, "drilldown" : "Mark Anderson", - "name" : "Mark Anderson", - "y" : 1 + "name" : "Mark Anderson" + }, + { + "name" : "Pete Houston", + "drilldown" : "Pete Houston", + "y" : 2 } - ] + ], + "name" : "Perl Weekly Challenge - 019" } ], + "tooltip" : { + "pointFormat" : "{point.name}: {point.y:f}
", + "followPointer" : 1, + "headerFormat" : "{series.name}
" + }, + "plotOptions" : { + "series" : { + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + }, + "borderWidth" : 0 + } + }, + "title" : { + "text" : "Perl Weekly Challenge - 019" + }, + "legend" : { + "enabled" : 0 + }, "drilldown" : { "series" : [ { + "id" : "Lubos Kolouch", + "name" : "Lubos Kolouch", "data" : [ [ "Perl 5", 2 ] - ], - "id" : "Lubos Kolouch", - "name" : "Lubos Kolouch" + ] }, { - "name" : "Mark Anderson", "id" : "Mark Anderson", "data" : [ [ "Perl 5", 1 ] - ] + ], + "name" : "Mark Anderson" + }, + { + "id" : "Pete Houston", + "data" : [ + [ + "Perl 5", + 2 + ] + ], + "name" : "Pete Houston" } ] }, - "chart" : { - "type" : "column" - }, - "title" : { - "text" : "Perl Weekly Challenge - 019" - }, - "legend" : { - "enabled" : 0 - }, - "xAxis" : { - "type" : "category" - }, "subtitle" : { - "text" : "[Champions: 2] Last updated at 2019-07-29 13:36:45 GMT" + "text" : "[Champions: 3] Last updated at 2019-07-29 13:41:48 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } } } -- cgit