/* * @Author: your name * @Date: 2024-11-20 09:16:47 * @LastEditTime: 2024-11-20 09:47:16 * @LastEditors: bogon * @Description: In User Settings Edit * @FilePath: /performance-test/src/assets/js/constants/echarts-config/timeSeries.js */ //时间序列图 timeSeries //风速变化趋势 export const option = { tooltip: { trigger: "axis", }, toolbox: { feature: { dataView: { show: true, readOnly: false }, magicType: { show: true, type: ["line", "bar"] }, restore: { show: true }, saveAsImage: { show: true }, }, }, legend: { top: "bottom", }, xAxis: { type: "category", data: ["00:00", "06:00", "12:00", "18:00", "24:00"], name: "时间", }, yAxis: { type: "value", name: "风速 (m/s)", }, series: [ { name: "风速", type: "line", data: [5, 7, 10, 8, 6], }, ], };