除非输入数据是CSV格式,否则每系列选项不起作用?
我有以下尝试在同一图表上绘制细线和粗抛物线:
g = new Dygraph(document.getElementById('graph'),
[
[1,2,1],
[2,4,4],
[3,6,9],
[4,8,16],
[5,10,25],
[6,12,36],
[7,14,49],
[8,16,64],
[9,18,81],
[10,20,100]
],
{
legend: 'always',
title: 'Data Chart',
drawPoints: true,
labels: ['index', 'doubleX', 'xSquared'],
series: {
doubleX: {
strokeWidth: 0.5
},
xSquared: {
strokeWidth: 2.0
}
}
}
);
但这两个系列只显示默认的显示选项。我没有得到任何警告信息或任何东西。有没有办法让这些与数组输入一起使用?