Pie Chart with percentage_tooltip
A pie chart with a tooltip that shows the percentage covered by the hovered slice.
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"description": "Pie Chart with percentage_tooltip",
"data": {
"values": [
{"category": 1, "value": 4},
{"category": 2, "value": 6},
{"category": 3, "value": 10},
{"category": 4, "value": 3},
{"category": 5, "value": 7},
{"category": 6, "value": 8}
]
},
"mark": {"type": "arc", "tooltip": true},
"encoding": {
"theta": {"field": "value", "type": "quantitative", "stack": "normalize"},
"color": {"field": "category", "type": "nominal"}
}
}