I have the following code in a test case I'm working on:
var chart = c3.generate({
data: {
columns: [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 50, 20, 10, 40, 15, 25]]
},
point: {
show: false,
onrendered: function () { console.log('rendered...') }
}
I'm not getting the message in the console. Is there something I'm missing?