« Test » : différence entre les versions
De 21Wiki
Aucun résumé des modifications Balise : Éditeur de wikicode 2017 |
Aucun résumé des modifications Balise : Éditeur de wikicode 2017 |
||
Ligne 1 : | Ligne 1 : | ||
<graph>{ | <graph> | ||
"width": | { | ||
"height": | "width": 800, | ||
"height": 200, | |||
"data": [ | "data": [ | ||
{ | { | ||
"name": "membres", | |||
" | "format": { | ||
"type": "json", | |||
"parse": { | |||
"chef_start": "date:\"%Y-%m-%d\"", | |||
"chef_end": "date:\"%Y-%m-%d\"" | |||
} | |||
}, | |||
"values": [ | "values": [ | ||
{ | { | ||
"label": "miguel", | |||
"nom": "Miguel Rodriguez", | |||
"chef_start": "2021-05-11", | |||
"chef_end": "2021-10-30" | |||
} | |||
] | ] | ||
} | } | ||
], | ], | ||
"scales": [ | "scales": [ | ||
Ligne 36 : | Ligne 28 : | ||
"type": "ordinal", | "type": "ordinal", | ||
"range": "height", | "range": "height", | ||
"domain": {"data": " | "domain": { | ||
"data": "membres", | |||
"field": "label" | |||
} | |||
}, | }, | ||
{ | { | ||
Ligne 43 : | Ligne 38 : | ||
"range": "width", | "range": "width", | ||
"round": true, | "round": true, | ||
"nice": " | "nice": "month", | ||
"domain": {"data": " | "domain": { | ||
"data": "membres", | |||
"field": [ | |||
"chef_start", | |||
"chef_end" | |||
] | |||
} | |||
} | } | ||
], | ], | ||
"axes": [ | "axes": [ | ||
{"type": "x", "scale": "x"} | { | ||
"type": "x", | |||
"scale": "x" | |||
} | |||
], | ], | ||
"marks": [ | "marks": [ | ||
{ | { | ||
"type": "rect", | "type": "rect", | ||
"from": {"data": " | "from": { | ||
"data": "membres" | |||
}, | |||
"properties": { | "properties": { | ||
"enter": { | "enter": { | ||
"x": {"scale": "x", "field": " | "x": { | ||
" | "scale": "x", | ||
"field": "chef_start" | |||
" | }, | ||
"fill": {"value": "# | "x2": { | ||
"scale": "x", | |||
"field": "chef_end" | |||
}, | |||
"y": { | |||
"scale": "y", | |||
"field": "nom" | |||
}, | |||
"height": { | |||
"value": 4 | |||
}, | |||
"fill": { | |||
"value": "#555" | |||
} | |||
} | } | ||
} | } | ||
Ligne 81 : | Ligne 85 : | ||
{ | { | ||
"type": "text", | "type": "text", | ||
"from": { | "from": { | ||
"data": "membres" | |||
}, | |||
"properties": { | "properties": { | ||
"enter": { | "enter": { | ||
"x": {"scale": "x", "field": " | "x": { | ||
" | "scale": "x", | ||
" | "field": "chef_start" | ||
" | }, | ||
" | "y": { | ||
"scale": "y", | |||
"field": "label", | |||
"offset": -3 | |||
}, | |||
"fill": { | |||
"value": "#000" | |||
}, | |||
"text": { | |||
"field": "nom" | |||
}, | |||
"font": { | |||
"value": "Helvetica Neue" | |||
}, | |||
"fontSize": { | |||
"value": 10 | |||
} | |||
} | } | ||
} | } |