我正在使用angularjs的chartjs图表我关心的是线图上的点我需要根据数据的范围给它们不同的颜色。任何人都可以帮我怎么做才能改变fillcolor属性
function drawChart(placeholder, values1, labels1) {
var plot = $.plot(placeholder,
[{
data: values1,
label: label1,
lines: {
show: true,
lineWidth: 2,
fill: true,
},
points: {
show: true,
lineWidth: 3,
fill: true,
fillColor: '#fafafa'
}
},
});
我没有足够的细节知道您的问题是否来自那里,但代码的语法不正确。
你应该有 :
function drawChart(placeholder, values1, labels1) {
var plot = $.plot(placeholder,
[{
data: values1,
label: label1,
lines: {
show: true,
lineWidth: 2,
fill: true,
},
points: {
show: true,
lineWidth: 3,
fill: true,
fillColor: '#fafafa'
}
}]
});
}