I use chart plugins from c3js.org as follows:
data: {
x : 'x',
columns: [['data1',10,20,30],['data2',40,28,10]]
type: 'bar',
hide: ["hide1","hide2"],
onclick: function(d,i){
console.log(d);
},
labels: true
},
Is there a way to get the value from the data hidden above?
Thank you and sorry for my poor English.
source
share