echarts.init(document.getElementById('container')).setOption({
xAxis: {
type: 'category',
data: ['2025-04-14','2025-04-28','2025-05-05',]
},
yAxis: {
type: 'value'
},
series: [{
data: [5508.98,5625.00,5084.75,],
type: 'line',
label: {
normal: {
show: true,
position: 'top'
}
}
}]
});