I'm trying to create a graph with multiple y axes like this example: http://c3js.org/samples/axes_y2.html, using Keen IO, but can't seem to figure it out. Any pointers?
EDIT: figured it out, just have to add to chartOptions :
.chartOptions({
data: {
axes: {
"Series 1": "y2",
"Series 2": "y2"
}
},
axis:{
y: {
label: "label1"
},
y2: {
label: "label2",
show: true
}
}