我得做这个图表
我已经成功创建了2019年的部分,里面有5个点的彩色数据。
我正在尝试添加2020年和2021年的数据,下面是我的代码:
const DATA_COUNT = 3;
const NUMBER_CFG = {count: DATA_COUNT, min: 0, max: 70};
const labels = ['2019', '2020', '2021'];
const data = {
labels: labels,
datasets: [
{
label: 'AUD',
data: ['51.01'],
borderColor: '#3088E4',
backgroundColor: '#3088E4',
},
{
label: 'BEC',
data: ['59.98'],
borderColor: '#734C9D',
backgroundColor: '#734C9D',
},
{
label: 'FAR',
data: ['46.31'],
borderColor: '#4FA333',
backgroundColor: '#4FA333',
},
{
label: 'FAR',
data: ['56.34'],
borderColor: '#EC990F',
backgroundColor: '#EC990F',
},
{
label: 'Cumulative',
data: ['53.41'],
borderColor: '#999999',
backgroundColor: '#999999',
}
]
};
可在此处进行实时测试,方法是将其粘贴到“Setup”(设置)下:https://www.chartjs.org/docs/latest/samples/bar/vertical.html
2条答案
按热度按时间cbwuti441#
您可以在
data.datasets[x].data
属性内传递多个值第一个
ehxuflar2#
我想明白了。这是一个在“数据”下面添加数据点的问题: