canvas {
maxwidth: 800px;
margin: 20px auto;
display: block;
}
基金债券是一种投资于债券市场的基金,通过投资于各类债券产品来获取收益。下面是基金债券的业绩表现图表:
const ctx = document.getElementById('bondChart').getContext('2d');
const data = {
labels: ['2021 Q1', '2021 Q2', '2021 Q3', '2021 Q4', '2022 Q1'],
datasets: [{
label: '基金债券业绩',
data: [2.5, 3.2, 2.8, 3.5, 3.0],
backgroundColor: 'rgba(54, 162, 235, 0.2)',
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 1
}]
};
const options = {
scales: {
y: {
beginAtZero: true
}
}
};
const bondChart = new Chart(ctx, {
type: 'line',
data: data,
options: options
});