echarts
echarts copied to clipboard
connectNulls feature for radar chart
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
What does the proposed API look like?
when connectNulls is enabled , it should work
hii any updates ??
Hi, This is something we are also looking for the solution. Any suggestions/ workaround in this regard would be much appreciated.
any progress?