Difference between revisions of "User:Fbstj/test/graph"

m (boom)
m (test)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
with the Article Statistics as of 2019-07-27
with the Article Statistics as of 2019-08-20


<graph>
<graph>
{
{
"version": 2,
"version": 2,
"width": 400,
"width": 300,
"height": 400,
"height": 300,
"data": [
"data": [
{
{
"name": "X",
"name": "X",
"values": [
"values": [
{"count":230, "label":"Stubs", "color":"gray" },
{"count":182, "label":"Stubs", "color":"gray" },
{"count":836, "label":"Middling", "color":"blue" },
{"count":843, "label":"Middling", "color":"blue" },
{"count":683, "label":"Reviewing", "color":"orange" },
{"count":703, "label":"Reviewing", "color":"orange" },
{"count":1351, "label":"Complete", "color":"green" },
{"count":1391, "label":"Complete", "color":"green" },
],
],
"transform": [{"type": "pie","field": "count"}]
"transform": [{"type": "pie","field": "count"}]
Line 56: Line 56:
"baseline": {"value": "middle"},
"baseline": {"value": "middle"},
"text": {"field": "label"}, "fontWeight":{"value": "bold",}
"text": {"field": "label"}, "fontWeight":{"value": "bold",}
}
}
}
]
}
</graph>


<graph>
{
"version": 2,
"data": [
{
"name": "X",
"values": [
{"count":182, "label":"Stubs", "color":"gray" },
{"count":843, "label":"Partial", "color":"blue" },
{"count":703, "label":"Unreviewed", "color":"orange" },
{"count":1391, "label":"Complete", "color":"green" },
],
"transform": [{"type": "pie","field": "count"}]
}
],
"marks": [
{
"type": "arc",
"from": {"data": "X"},
"properties": {
"enter": {
"x": {"field": {"group": "width" },"mult": 0.5},
"y": {"field": {"group": "height"},"mult": 0.5},
"startAngle": {"field": "layout_start"},
"endAngle": {"field": "layout_end"},
"innerRadius": {"value": 0},
"outerRadius": {"value": 400},
"stroke": {"value": "white"},
"fill": {"field": "color"}
},
}
},
{
"type": "text",
"from": {"data": "X"},
"properties": {
"enter": {
"x": {"field": {"group": "width" },"mult": 0.5},
"y": {"field": {"group": "height"},"mult": 0.5},
"radius": {"value": "300"},
"theta": {"field": "layout_mid"},
"fill": {"value": "white"},
"align": {"value": "center"},
"baseline": {"value": "middle"},
"text": {"field": "label"}, "fontWeight":{"value": "bold"}, "fontSize": {"value":"30"}
}
}
}
}

Latest revision as of 20:16, 20 August 2019

with the Article Statistics as of 2019-08-20

<graph> {

 "version": 2,
 "width": 300,
 "height": 300,
 "data": [
   {
     "name": "X",
     "values": [

{"count":182, "label":"Stubs", "color":"gray" }, {"count":843, "label":"Middling", "color":"blue" }, {"count":703, "label":"Reviewing", "color":"orange" }, {"count":1391, "label":"Complete", "color":"green" }, ],

     "transform": [{"type": "pie","field": "count"}]
   }
 ],
 "scales": [
   {
     "name": "r",
     "type": "sqrt",
     "domain": {"data": "X","field": "count"},
     "range": [20,300]
   }
 ],
 "marks": [
   {
     "type": "arc",
     "from": {"data": "X"},
     "properties": {
       "enter": {
         "x": {"field": {"group": "width"},"mult": 0.5},
         "y": {"field": {"group": "height"},"mult": 0.5},
         "startAngle": {"field": "layout_start"},
         "endAngle": {"field": "layout_end"},
         "innerRadius": {"value": 0},
         "outerRadius": {"field":"count", "scale": "r"},
         "stroke": {"value": "white"},
         "fill": {"field": "color"}
       },
     }
   },
   {
     "type": "text",
     "from": {"data": "X"},
     "properties": {
       "enter": {
         "x": {"field": {"group": "width"},"mult": 0.5},
         "y": {"field": {"group": "height"},"mult": 0.5},
         "radius": {"field": "count", "scale": "r","offset": -50},
         "theta": {"field": "layout_mid"},
         "fill": {"value": "white"},
         "align": {"value": "center"},
         "baseline": {"value": "middle"},
         "text": {"field": "label"}, "fontWeight":{"value": "bold",}
       }
     }
   }
 ]

} </graph>


<graph> {

 "version": 2,
 "data": [
   {
     "name": "X",
     "values": [

{"count":182, "label":"Stubs", "color":"gray" }, {"count":843, "label":"Partial", "color":"blue" }, {"count":703, "label":"Unreviewed", "color":"orange" }, {"count":1391, "label":"Complete", "color":"green" }, ],

     "transform": [{"type": "pie","field": "count"}]
   }
 ],
 "marks": [
   {
     "type": "arc",
     "from": {"data": "X"},
     "properties": {
       "enter": {
         "x": {"field": {"group": "width" },"mult": 0.5},
         "y": {"field": {"group": "height"},"mult": 0.5},
         "startAngle": {"field": "layout_start"},
         "endAngle": {"field": "layout_end"},
         "innerRadius": {"value": 0},
         "outerRadius": {"value": 400},
         "stroke": {"value": "white"},
         "fill": {"field": "color"}
       },
     }
   },
   {
     "type": "text",
     "from": {"data": "X"},
     "properties": {
       "enter": {
         "x": {"field": {"group": "width" },"mult": 0.5},
         "y": {"field": {"group": "height"},"mult": 0.5},
         "radius": {"value": "300"},
         "theta": {"field": "layout_mid"},
         "fill": {"value": "white"},
         "align": {"value": "center"},
         "baseline": {"value": "middle"},
         "text": {"field": "label"}, "fontWeight":{"value": "bold"}, "fontSize": {"value":"30"}
       }
     }
   }
 ]

} </graph>