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
}
}
https://github.com/keen/keen-dataviz.js#multiple-query-results-on-one-chart
If you don't want to rely so much on queries - you can always pass your custom data. https://jsfiddle.net/94z60cpp/