基金大盘实时走势图
芸滨
阅读:456
2024-05-17 13:25:25
评论:0
```html
canvas {
mozuserselect: none;
webkituserselect: none;
msuserselect: none;
}
基金大盘近几年趋势图
const ctx = document.getElementById('myChart').getContext('2d');
const myChart = new Chart(ctx, {
type: 'line',
data: {
labels: ['2018', '2019', '2020', '2021', '2022'],
datasets: [{
label: '基金大盘趋势',
data: [15000, 17000, 20000, 19000, 21000], // 这里填入实际数据
backgroundColor: 'rgba(75, 192, 192, 0.2)',
borderColor: 'rgba(75, 192, 192, 1)',
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});