apache / echarts

Apache ECharts is a powerful, interactive charting and data visualization library for browser
https://echarts.apache.org
Apache License 2.0
60.16k stars 19.6k forks source link

connectNulls feature for radar chart #17011

Open RahulVishK opened 2 years ago

RahulVishK commented 2 years ago

What problem does this feature solve?

option = { title: { text: 'Basic Radar Chart' }, legend: { data: ['Allocated Budget', 'Actual Spending'] }, radar: { // shape: 'circle', indicator: [ { name: 'Sales', max: 6500 }, { name: 'Administration', max: 16000 }, { name: 'Information Technology', max: 30000 }, { name: 'Customer Support', max: 38000 }, { name: 'Development', max: 52000 }, { name: 'Marketing', max: 25000 } ] }, series: [ { name: 'Budget vs spending', type: 'radar', connectNulls: true, data: [ { value: [4200, 3000, null, 35000, null, 18000], name: 'Allocated Budget' }, { value: [5000, 14000, 28000, 26000, 42000, 21000], name: 'Actual Spending' } ] } ] }; when connectNulls is enabled values are not connected

Screenshot (70)

What does the proposed API look like?

when connectNulls is enabled , it should work

RahulVishK commented 2 years ago

hii any updates ??

RavalikaP commented 2 years ago

Hi, This is something we are also looking for the solution. Any suggestions/ workaround in this regard would be much appreciated.

xiao-xiaozi commented 1 year ago

any progress?