日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Echarts柱形图折线图合并demo(含图例)

發布時間:2023/12/29 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Echarts柱形图折线图合并demo(含图例) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章目錄

  • 前言


前言

柱形圖折線圖合并demo(含圖例)

option = {xAxis: {type: 'category',data: [2001, 2002, 2003, 2004, 2005],axisTick: {show: false}},yAxis: {type: 'value',interval: 10,// scale: true,max: 300,min: 0,splitLine: {show: true,lineStyle: {type: 'dashed',color: 'DimGray'}}},tooltip: {trigger: 'axis',axisPointer: {type: 'shadow'}},grid: {//grid 組件離容器上下左右側的距離// left: "3%",// right: "3%",// top: 35,// bottom: "3%",// containLabel: true,},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' // 圖例圖形的形狀,有多個可選值:'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow', 'none',}]},// 折線圖(企業個數){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' // 圖例圖形的形狀,有多個可選值:'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow', 'none',}]}],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(含图例)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。