Reputation: 45
I'm using vega in kibana for visualizing data. Now I want to draw a funnel chart but it doesn't have any examples of this.
Thank you for your help
Upvotes: 2
Views: 2042
Reputation: 86473
You can create a funnel chart in Vega-Lite using a bar chart with stack: "center"
. For example (vega editor):
{
"data": {
"values": [
{"Pipeline": "Consultation", "Count": 140000},
{"Pipeline": "Prospect", "Count": 120000},
{"Pipeline": "Qualified", "Count": 100000},
{"Pipeline": "Negotiation", "Count": 80000},
{"Pipeline": "Prototype", "Count": 60000},
{"Pipeline": "Closing", "Count": 40000},
{"Pipeline": "Won", "Count": 20000},
{"Pipeline": "Finalized", "Count": 10000}
]
},
"encoding": {"y": {"field": "Pipeline", "type": "nominal", "sort": null}},
"layer": [
{
"mark": "bar",
"encoding": {
"color": {"field": "Pipeline", "type": "nominal", "legend": null},
"x": {"field": "Count", "type": "quantitative", "stack": "center"}
}
},
{
"mark": "text",
"encoding": {"text": {"field": "Count", "type": "quantitative"}}
}
],
"width": 500
}
Upvotes: 3