生活随笔
收集整理的這篇文章主要介紹了
Echarts柱形图折线图合并demo(含图例)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
前言
柱形圖折線圖合并demo(含圖例)
option
= {xAxis: {type: 'category',data: [2001, 2002, 2003, 2004, 2005],axisTick: {show: false}},yAxis: {type: 'value',interval: 10,max: 300,min: 0,splitLine: {show: true,lineStyle: {type: 'dashed',color: 'DimGray'}}},tooltip: {trigger: 'axis',axisPointer: {type: 'shadow'}},grid: {},legend: [{top: '0%',left: '10%',textStyle: {color: '#fff',fontSize: 10,fontFamily: 'PingFangSC-Regular, PingFang SC;'},itemStyle: {color: '#429DFF'},itemWidth: 10, itemHeight: 7, data: [{name: '總產值', icon: 'rect' }]},{top: '0%',right: '10%',textStyle: {color: '#fff',fontSize: 14,fontFamily: 'PingFangSC-Regular, PingFang SC;'},itemStyle: {color: 'red'},itemWidth: 10, itemHeight: 2, data: [{name: '企業個數', icon: 'rect' }]}],series: [{name: '總產值',data: [50, 10, 90, 200, 250],barWidth: 10,type: 'bar',itemStyle: {color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(66, 157, 255, 0.8)' },{ offset: 1, color: 'rgba(66, 157, 255, 0)' }])}},{name: '企業個數',type: 'line',data: [50, 10, 90, 200, 250],lineStyle: {normal: {color: 'red', width: '2' }},itemStyle: {normal: {color: '#fff', borderColor: '#429DFF' }}}]
};
總結
以上是生活随笔為你收集整理的Echarts柱形图折线图合并demo(含图例)的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。