I've created a C3 bar chart, but I don't have multiple sets per column. I only have the values per-item. It seems like it should be a nice classic easy bar chart to create... but I can seem to only create a chart that has n-datapoints; the columns seem like they aren't supposed to only have one value.
var chart = c3.generate({
data: {
columns: [
['data1', 30],
['data2', 20],
['data3', 50],
['data4', 3],
['data5', 13]
],
type: 'bar'
}
});