echarts.init(document.getElementById('container')).setOption({
xAxis: {
type: 'category',
data: ['2025-01-20','2025-02-10','2025-02-17',]
},
yAxis: {
type: 'value'
},
series: [{
data: [7426.67,7639.92,8053.53,],
type: 'line',
label: {
normal: {
show: true,
position: 'top'
}
}
}]
});