var colors = ['#5793f3', '#d14a61', '#675bba']; searchAndIndexChart=echarts.init(document.getElementById("search-index-chart")); searchAndIndexChart.setOption({ color: colors, tooltip : { trigger: 'axis', axisPointer: { animation: false }, formatter: function (params) { var res = params[0].name; for (var i = 0, l = params.length; i < l; i++) { res += '<br/>' + params[i].seriesName + ' : ' + params[i].value; } return res; } }, legend: { data:['搜索流量', '索引数据'] }, grid: { top: 70, bottom: 50 }, xAxis: { type: 'category', axisTick: { alignWithLabel: true }, boundaryGap: false, axisLine: { onZero: true, }, data: result.date }, yAxis: [ { type: 'value', axisLine: { onZero: false, lineStyle: { color: colors[0] } } }, { type: 'value', axisLine: { onZero: false, lineStyle: { color: colors[1] } } } ], series: [ { name:'搜索流量', type:'line', yAxisIndex:'0', smooth: true, axisLine : {onZero: true}, tooltip:{ trigger:'axis' }, data: result.search }, { name:'索引数据', type:'line', smooth: true, yAxisIndex:'1', tooltip:{ trigger:'axis' }, data: result.index } ] });
echarts双y轴
最新推荐文章于 2024-07-08 17:44:16 发布