Since I am not familiar with the C3.js library, I got a little confused when I tried to break the data of an array.
For a point in time, I have some array value from json.
var jsondata=[[123],[45],[56],[22]]; var jsondataName=[["apple"],["orange"],["banana"],["pear"]];
I tried passing the first jsondata strong> array to the chart, but these values ββfall into the same column that I would not want to see.
I want this array value to become independent and enter a name in it
Please see the demo I did: http://jsfiddle.net/q8h39/92/
And the result that I want should look 
Update json data format:
"Name": apple, "data": { "value": 1434, } "Name": banana, "data": { "value": 342, } } }
source share