Support for 'ungrouped data' having coloumns and rows properties separately
Open
- Dominant language
- JavaScript
- Stars
- 9.3k
- Forks
- 1.4k
- Avg merge
- 6d 16h
- Merged PRs (30d)
- 1
Description
Would you be interested in supporting the following format for data ? I'm doing it for my project and thought that you might be interested.
```
var chart = c3.generate({
data: {
items: {
cols: ['data1', 'data2', 'data3'],
rows: [
[90, 120, 300],
[40, 160, 240],
[50, 200, 290],
[120, 160, 230],
[80, 130, 300],
[90, 220, 320]
]
}
}
})
```
Contributor guide
Assessment
This issue has not been assessed yet.