echarts.init(document.getElementById('container')).setOption({
xAxis: {
type: 'category',
data: ['2025-03-10','2025-03-17','2025-03-24','2025-03-31','2025-04-07',]
},
yAxis: {
type: 'value'
},
series: [{
data: [6641.04,6676.71,6682.85,6922.59,6802.92,],
type: 'line',
label: {
normal: {
show: true,
position: 'top'
}
}
}]
});