Files
minivlat-local-ua/public/charts/piechart-ukrainian.vl.json
2025-01-30 16:28:56 +02:00

54 lines
1.4 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"title": {
"text": "Розподіл світового ринку смартфонів у 2021 році",
"fontSize": 16,
"fontWeight": "bold"
},
"config": {
"legend": {
"labelFontSize": 11,
"titleFontSize": 12,
"titleFontWeight": "bold"
}
},
"width": 600, "height": 400,
"data": {
"values": [
{"index": 1, "brand": "Samsung", "share": 17.6},
{"index": 2, "brand": "Xiaomi", "share": 15.5},
{"index": 3, "brand": "Apple", "share": 15.0},
{"index": 4, "brand": "Oppo", "share": 10.2},
{"index": 5, "brand": "Vivo", "share": 9.8},
{"index": 6, "brand": "Інші", "share": 31.9}
]
},
"encoding": {
"theta": {
"field": "share",
"type": "quantitative",
"stack": true,
"sort": {"field": "index", "order": "ascending"}
},
"color": {
"field": "brand",
"type": "nominal",
"legend": null,
"sort": {"field": "index", "order": "ascending"}
},
"order": {
"field": "index",
"type": "quantitative"
}
},
"layer": [{
"mark": {"type": "arc", "outerRadius": 120}
}, {
"mark": {"type": "text", "radius": 90},
"encoding": {
"text": {"field": "brand", "type": "nominal"},
"color": {"value": "black"}
}
}]
}