【前端统计图】echart折线图ajax请求json数据

您所在的位置:网站首页 ajax获取json数据画折线图 【前端统计图】echart折线图ajax请求json数据

【前端统计图】echart折线图ajax请求json数据

2024-07-01 16:10| 来源: 网络整理| 查看: 265

// 折线图 $.ajax({ url: "test.json", data: {}, type: 'GET', success: function(data) { console.log(JSON.stringify(data)) hrFun(data.echatX, data.echatY);

}, }); // 心率 var hrChart = echarts.init(document.getElementById("main")); function hrFun(x_data, y_data) { hrChart.setOption({ color: ['#3398DB'], tooltip: { trigger: 'axis', axisPointer: { // 坐标轴指示器,坐标轴触发有效 type: 'shadow' // 默认为直线,可选为:'line' | 'shadow' } }, legend: { data: ['心率值'] }, grid: { left: '3%', right: '20%', bottom: '20%', containLabel: true }, xAxis: [{ type: 'category', data: x_data, }], yAxis: [{ // 纵轴标尺固定 type: 'value', scale: true, name: '心率值', max: 140, min: 0, splitNumber: 20, boundaryGap: [0.2, 0.2] }], series: [{ name: '心率', type: 'line', data: y_data }] }, true); }



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3