资料:
const data={
"labels": [
0,
400,
800,
1200,
1600,
2000,
2400,
2800,
3200,
3600,
4000
],
"datasets": [
{
"axis": 'x',
"label": "FFF",
"borderColor": "Red",
"backgroundColor": "Red",
"data": [
{
"x": 2883,
"y": 129
},
{
"x": 3509,
"y": 118
},
{
"x": 3916,
"y": 73
}
]
}
]
};
对于这个结果,您必须使用
scatter chart
和 showline : true
选项而不是 line chart
。
//your code
const data={
"labels": [
0,
400,
800,
1200,
1600,
2000,
2400,
2800,
3200,
3600,
4000
],
"datasets": [
{
"axis": 'x',
"label": "FFF",
"borderColor": "Red",
"backgroundColor": "Red",
"showLine": true, //add this option to connect dots of scatterred points
"data": [
{
"x": 2883,
"y": 129
},
{
"x": 3509,
"y": 118
},
{
"x": 3916,
"y": 73
}
]
}
]
};
<Scatter data={data} />
这是因为您使用的是默认配置的折线图。
默认情况下,折线图使用类别比例并需要字符串。在你指定一个 x 的数据集中,这个 x 是内部数据格式,对于分类尺度来说不是值而是索引。
最简单的方法是通过将
options.scales.x.type
设置为 'linear'
来使用线性刻度