From 16e00a3701bcfc45420dbe0b93ff8093e28ff7ac Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 10 Jun 2019 13:33:08 +0100 Subject: - Added solution by Ozzy. --- stats/pwc-current.json | 85 +++++++++++++++++++++++++++++--------------------- 1 file changed, 50 insertions(+), 35 deletions(-) (limited to 'stats/pwc-current.json') diff --git a/stats/pwc-current.json b/stats/pwc-current.json index ae8db7eb2c..5e0636d44c 100644 --- a/stats/pwc-current.json +++ b/stats/pwc-current.json @@ -2,30 +2,29 @@ "xAxis" : { "type" : "category" }, - "tooltip" : { - "pointerFormat" : "{point.name}: {point.y:f}
", - "headerFormat" : "{series.name}
", - "followPointer" : 1 - }, "legend" : { "enabled" : 0 }, - "plotOptions" : { - "series" : { - "dataLabels" : { - "enabled" : 1, - "format" : "{point.y}" - }, - "borderWidth" : 0 - } - }, - "title" : { - "text" : "Perl Weekly Challenge - 012" - }, - "yAxis" : { - "title" : { - "text" : "Total Solutions" + "series" : [ + { + "colorByPoint" : 1, + "name" : "Champions", + "data" : [ + { + "drilldown" : "Ozzy", + "y" : 1, + "name" : "Ozzy" + }, + { + "name" : "Simon Proctor", + "y" : 2, + "drilldown" : "Simon Proctor" + } + ] } + ], + "subtitle" : { + "text" : "[Champions: 2] Last updated at 2019-06-10 12:32:36 GMT" }, "drilldown" : { "series" : [ @@ -33,29 +32,45 @@ "data" : [ [ "Perl 6", - 2 + 1 ] ], + "name" : "Ozzy", + "id" : "Ozzy" + }, + { "id" : "Simon Proctor", + "data" : [ + [ + "Perl 6", + 2 + ] + ], "name" : "Simon Proctor" } ] }, - "series" : [ - { - "data" : [ - { - "y" : 2, - "name" : "Simon Proctor", - "drilldown" : "Simon Proctor" - } - ], - "colorByPoint" : 1, - "name" : "Champions" + "tooltip" : { + "headerFormat" : "{series.name}
", + "followPointer" : 1, + "pointerFormat" : "{point.name}: {point.y:f}
" + }, + "plotOptions" : { + "series" : { + "borderWidth" : 0, + "dataLabels" : { + "enabled" : 1, + "format" : "{point.y}" + } } - ], - "subtitle" : { - "text" : "[Champions: 1] Last updated at 2019-06-10 10:21:32 GMT" + }, + "yAxis" : { + "title" : { + "text" : "Total Solutions" + } + }, + "title" : { + "text" : "Perl Weekly Challenge - 012" }, "chart" : { "type" : "column" -- cgit