差分

ナビゲーションに移動 検索に移動
ページの作成:「<graph> { // // ATTENTION: This code is maintained at https://www.mediawiki.org/wiki/Template:Graph:Horizontal_bars // Please do not modify it anywhere…」
<graph>

{
//
// ATTENTION: This code is maintained at https://www.mediawiki.org/wiki/Template:Graph:Horizontal_bars
// Please do not modify it anywhere else, as it may get copied and override your changes.
// Suggestions can be made at https://www.mediawiki.org/wiki/Template:Graph:Horizontal_bars
//
// Template translation is in https://commons.wikimedia.org/wiki/Data:Original/Template:Graphs.tab
//

"version": 2,
"width": 300,
"height": 400,

"data": [{
"name": "chart",
"url": "tabular:///{{{table}}}",
"format": {"type": "json", "property": "data"

},
"transform": [
// Convert xField parameter into a field "_xfield"
{"type": "formula", "field": "_xfield", "expr":
"datum.country"
},
{"type": "fold", "fields": ["articles","created", "improved"]}
]
},
{
"name": "labels",
"url": "tabular:///{{{table}}}",
"format": {"type": "json", "property": "fields"}
},
{
"name": "stats",
"source": "chart",
"transform": [{
"type": "aggregate",
"groupby": ["_xfield"],
"summarize": [{"field": "value", "ops": ["sum"]}]
}]
}
],
"scales": [
{
"name": "x",
"type": "linear",
"domain": {
"data": "stats", "field": "sum_value"
},
"range": "width",



},
{
"name": "y",
"type":
"ordinal",
"range": "height",
"domain": {
"data": "chart", "field": "_xfield"
},



},
{
"name": "color",
"type": "ordinal",
"domain": {"data": "chart", "field": "key"},
"range": "category10"
},
{
"name": "labels",
"type": "ordinal",
"domain": {"data": "labels", "field": "name"},
"range": {"data": "labels", "field": "title"},
}
],

"axes": [
{"scale": "x", "type": "x", "ticks": 7


},
{"scale": "y", "type": "y"


}
],

"marks": [
// Group data by the "key", and draw lines, one line per key
{
"type": "rect",
"from": {
"data": "chart",
"transform": [
{"type": "stack", "groupby": ["_xfield"], "sortby": ["key"], "field": "value"}
]
},
"properties": {
"enter": {
"y": {"scale": "y", "field": "_xfield"},
"height": {"scale": "y", "band": true, "offset": -1},
"x": {"scale": "x", "field": "layout_start"},
"x2": {"scale": "x", "field": "layout_end"},
"fill": {"scale": "color", "field": "key"}
}
}
}


]
}

</graph>

案内メニュー