我有一个线条图,有不同的线条。这些线具有不同的x位置,并且必须从其位置开始。但是所有都从0开始。
如果我使用分散,则位置可以正常。
如何配置折线图从x位置开始?或者我如何在散点图中画一条线?
配置:
new Chart(ctx, {
type: 'line',
data: JSON.parse(data),
options: {
scales: {
yAxes: [{
stacked: false,
ticks: {
beginAtZero: false
}
}]
},
spanGaps: false,
showLine: true,
fill: true
}
});
示例数据:
{
"labels": ["5 hours"],
"datasets": [{
"data": [{
"y": 36997,
"x": 0
}],
"label": "1657818086198724510",
"backgroundColor": "rgba(255, 0, 0, 0.8)",
"borderColor": "rgba(255, 0, 0, 0.8)",
"fill": false
},
答案 0 :(得分:0)
发现了我的错误,
是showLine
应该是showLines: - (