我的要求要求根据数据集绘制彩色图表, 我只是尝试在相同的阀值上创建两条线,并使用“空”作为间隙。
请检查 原始网址:[{https://primeng-charts-playground-hrrbd1.stackblitz.io]。
即使看起来不错,我也无法用一个值(pt)控制线条颜色,每条线需要两个点。
如何解决这个问题。
答案 0 :(得分:0)
下面是一个hack,您需要为不同的颜色定义单独的数据集,但是,每个标签只有一个点,而不是两个。我不知道Chart.js中是否对此要求提供内置支持。小提琴-> http://jsfiddle.net/dqonwrLh/2/
var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 10, 3, 5],
backgroundColor: 'rgba(255, 99, 132, 0.2)',
borderColor: 'rgba(255, 99, 132, 0.2)',
borderWidth: 1
},
{
label: '# of Votes1',
data: [null, null, null, 5, 8, 5],
backgroundColor: 'rgba(54, 162, 235, 0.2)',
borderColor: 'rgba(54, 162, 235, 0.2)',
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
},
legend:{
display: false
}
}
});