我正在尝试使用Chart.js版本2绘制折线图,因为我在这个版本中没用,我们没有 fillColor属性了,而不是它我们应该使用backgroundColor, 我有2个不同的数据集,我想用不同的颜色填充它们,我也想将不透明度设置为0。
datasets: [ {
label: "This Year",
backgroundColor: "rgba(225, 236, 240, 1)",
pointBackgroundColor: "rgba(107,200,213,1)",
data: [1200,800,300,460,500]
},
{
label: "Next Year",
backgroundColor: "rgba(83,132,153,1)",
pointBackgroundColor: "rgba(184, 0, 36, 1)",
data: [200,500,1300,610,320]
}
]};
我所面临的问题是"明年"的浪潮和它的数据点将隐藏在今年"今年"波。 与prevuse版本中的fillColor我们没有这个问题,我想, 你能不能指导我怎样才能解决这个问题? ......