The funnel chart doesn't render as it's supposed to for the huge value difference between the cells. For example, the topmost cell(head) value being 2000000 and the bottommost cell(neck) value being 500.
Below is the screenshot of the example editor. Please help me in shaping the funnel chart in a triangular form irrespective of the huge value difference between the cells. Thank you in advance. current expectation
In case you're unable to see the screenshot here's the data you can use in apache-echart example editor,
option = {
legend: {
data: ['Ad Request', 'Impressions', 'Clicks', 'Orders', 'Revenue']
},
series: [
{
name: 'test-funnel',
type: 'funnel',
data: [
{
value: 50,
name: 'Revenue'
},
{
value: 100,
name: 'Orders'
},
{
value: 1000,
name: 'Clicks'
},
{
value: 10000,
name: 'Impressions'
},
{
value: 2000000,
name: 'Ad Request'
}
],
label: {
position: 'inside'
}
}
]
};