reorganize files

This commit is contained in:
2025-01-30 16:28:56 +02:00
parent 594a5fc0d5
commit f8bb71a184
94 changed files with 2 additions and 25 deletions

View File

@@ -0,0 +1,35 @@
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 600,
"height": 400,
"title": "Ціни на нафту",
"data": {
"url": "data/linechart.json"
},
"mark": {
"type": "line",
"point": true
},
"encoding": {
"x": {
"field": "date",
"type": "temporal",
"title": "Місяць",
"axis": {
"format": "%b %Y",
"labelOverlap": false,
"labelAngle": -25,
"labelAlign": "right",
"tickCount": "month"
}
},
"y": {
"field": "value",
"type": "quantitative",
"title": "Ціна за барель нафти ($)",
"scale": {
"zero": true
}
}
}
}