mirror of
https://github.com/olehomelchenko/minivlat-local-ua.git
synced 2025-12-21 13:12:23 +00:00
41 lines
809 B
JSON
41 lines
809 B
JSON
{
|
|
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
|
"title": {
|
|
"text": "Global Internet Speed (Mbps)",
|
|
"fontSize": 16,
|
|
"fontWeight": "bold"
|
|
},
|
|
"data": {
|
|
"url": "data/barchart.csv", "format": {"type": "csv"}
|
|
},
|
|
"width": 600,
|
|
"height": 400,
|
|
"mark": {
|
|
"type": "bar"
|
|
},
|
|
"encoding": {
|
|
"x": {
|
|
"field": "Country",
|
|
"type": "nominal",
|
|
"axis": {
|
|
"labelAngle": 40,
|
|
"labelAlign": "left",
|
|
"title": null,
|
|
"labelPadding": 10
|
|
},
|
|
"sort": {
|
|
"field": "index",
|
|
"order": "ascending"
|
|
}
|
|
},
|
|
"y": {
|
|
"field": "Speed",
|
|
"type": "quantitative",
|
|
"axis": {
|
|
"title": "Internet Speed (Mbps)",
|
|
"titleFontWeight": "bold",
|
|
"grid": true
|
|
}
|
|
}
|
|
}
|
|
} |