I am looking to create a combined stacked graph and line graph, but I'm facing challenges as the stacked graph is not usable per-series. Can anyone provide guidance on how to achieve this?
g = new Dygraph(document.getElementById("graph"),
"X,Y1,Y2,Y3\n" +
"0,25,0,30\n" +
"1,20,10,27\n" +
"2,17,17,30\n" +
"3,16,23,28\n" +
"4,14,27,30\n" +
"5,13,30,29\n" +
"6,12,32,30\n" +
"7,11,33,30\n",
{
"Y1": {
stackedGraph: true, fillGraph: true
},
"Y2": {
stackedGraph: true, fillGraph: true
},
"Y3": {
stackedGraph: false, fillGraph: false, strokeWidth: 2
},
title: 'Test'
});