我正在尝试使用render
多折线图,canvasJS
但它没有按预期工作。
这是我的drawChart函数
function drawChart(obj, placeholder){
var dataPoints = [];
var maxPrice = [];
var minPrice = [];
//console.info(obj);
for (var i = obj.length - 1; i >= 0; i--) {
dataPoints.push({label:obj[i].year+"-"+obj[i].month+"-"+obj[i].day,y:Math.round(obj[i].avgPrice * 1000) / 1000});
minPrice.push({label:obj[i].year+"-"+obj[i].month+"-"+obj[i].day,y:obj[i].minPrice});
maxPrice.push({label:obj[i].year+"-"+obj[i].month+"-"+obj[i].day,y:obj[i].maxPrice});
}
console.log(dataPoints);
console.log(maxPrice);
console.log(minPrice);
var chart = new CanvasJS.Chart("chartContainer",
{
animationEnabled: true,
//theme: "theme1",
zoomEnabled: true,
title:{
text: placeholder
},
data: [
{
type: "spline", //change type to bar, line, area, pie, etc
showInLegend: true,
legendText: "Average Price",
dataPoints: dataPoints //this line I tried to change
},
{
type: "spline",
showInLegend: true,
legendText: "Min Price",
dataPoints: minPrice
},
{
type: "spline",
showInLegend: true,
legendText: "Max Price",
dataPoints: maxPrice
}
],
legend: {
cursor: "pointer",
itemclick: function (e) {
if (typeof(e.dataSeries.visible) === "undefined" || e.dataSeries.visible) {
e.dataSeries.visible = false;
} else {
e.dataSeries.visible = true;
}
chart.render();
}
}
});
chart.render();
}
var dataPoints, maxPrice, minPrice
具有相同的布局/数据。
它显示这样的图表,两条线minPrice and maxPrice
的重置消失了。
PS如果我改成dataPoints: dataPoints
它dataPoints: min/maxPrice
也不起作用。