echarts.init(document.getElementById('container')).setOption({ xAxis: { type: 'category', data: ['2024-04-01','2024-04-08','2024-04-15','2024-04-22','2024-04-29',] }, yAxis: { type: 'value' }, series: [{ data: [6097.56,4396.98,5849.06,5172.41,6354.30,], type: 'line', label: { normal: { show: true, position: 'top' } } }] });