echarts icon indicating copy to clipboard operation
echarts copied to clipboard

connectNulls feature for radar chart

Open RahulVishK opened this issue 2 years ago • 2 comments

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 avatar May 11 '22 07:05 RahulVishK

hii any updates ??

RahulVishK avatar Aug 16 '22 05:08 RahulVishK

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

RavalikaP avatar Sep 12 '22 05:09 RavalikaP

any progress?

xiao-xiaozi avatar Sep 01 '23 06:09 xiao-xiaozi