• vue echarts 柱状折线图


    在这里插入图片描述

     
        <div id="bargainTrend" style="width: 100%;height:250px;"></div>
    
    
    return {
           
     month: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], //柱状图横轴
            lineData1: [150, 220, 430, 360, 450, 680, 100, 450, 680, 200, 680, 200],  // 折线图的数据
            lineData2: [200, 210, 230, 350, 450, 600, 360, 456, 258, 369, 411, 256],
            barData1: [150, 220, 430, 360, 450, 680, 100, 450, 680, 200, 680, 200],  // 柱状图1的数据
            barData2: [200, 210, 230, 350, 450, 600, 360, 456, 258, 369, 411, 256],  // 柱状图2的数据
    
    }
    
    methods() {
    
           drawBargainOrderLine(xAxisData, lineData1, lineData2, barData1, barData2) { // xAxisData:x轴的值
            let eChart = this.$echarts.init(document.getElementById("bargainTrend")); // 基于准备好的dom,初始化echarts实例
            this.eChart = eChart;
            eChart.setOption({
              // 绘制图表
              title: {text: ""},
              tooltip: {
                formatter: '{a}: {c}'
              },
              grid: {
                left: '3%',
                right: '3%',
                bottom: '3%',
                containLabel: true
              },
              legend: {  //图例名
                show: true,
                data: ['订单金额', '订单量', '订单金额折线', '订单量折线'],
                right: "0%",
                textStyle: {
                  color: "#000" //图例文字
                }
              },
              xAxis: [
                // x轴
                {
                  type: "category",
                  axisTick: {
                    show: false, // 坐标轴刻度。
                  },
                  axisLine: {
                    show: true, // 坐标轴轴线。
                    lineStyle: {
                      color: "#eeeeee",
                    },
                  },
                  axisLabel: {
                    // 坐标轴刻度标签的相关设置。
                    inside: false,
                    textStyle: {
                      color: "#999",
                      fontWeight: "normal",
                      fontSize: "12",
                    },
                  },
                  splitLine: {show: false}, // 去除网格线
                  data: xAxisData,
                },
                {
                  type: "category",
                  axisLine: {show: false}, // 是否显示坐标轴轴线。
                  axisTick: {show: false}, // 是否显示坐标轴刻度。
                  axisLabel: {show: false}, // 是否显示刻度标签。 柱状图上的标签
                  splitArea: {show: false}, // 是否显示分隔区域。  背景遮罩
                  splitLine: {show: false}, // 是否显示分隔线。
                  // data: ["1月", "2月", "3月", "4月", "5月", "6月", "7月"],
                },
              ],
              yAxis: [
                // y轴
                {
                  type: "value",
                  axisTick: {
                    show: false,
                  },
                  axisLine: {
                    show: true,
                    lineStyle: {
                      color: "#eeeeee",
                    },
                  },
                  splitLine: {
                    show: false,
                    lineStyle: {
                      color: "#32346c ",
                    },
                  },
                  axisLabel: {
                    textStyle: {
                      color: "#bac0c0",
                      fontWeight: "normal",
                      fontSize: "12",
                    },
                    formatter: "{value}",
                  },
                }
              ],
              series: [
                { // 柱状图1
                  type: "bar",
                  name: '订单金额',
                  itemStyle: {
                    show: true,
                    color: "#301de0",  // 柱状图的颜色  ,
                    borderWidth: 0,
                    borderType: "solid",
                    emphasis: {
                      shadowBlur: 15,
                      shadowColor: "rgba(105,123, 214, 0.7)",
                    },
                  },
                  zlevel: 1,
                  barWidth: 20,
                  data: barData1,
                },
                { // 柱状图2
                  type: "bar",
                  name: '订单量',
                  itemStyle: {
                    show: true,
                    color: "#a800ff",
                    borderWidth: 0,
                    borderType: "solid",
                    emphasis: {
                      shadowBlur: 15,
                      shadowColor: "rgba(105,123, 214, 0.7)",
                    },
                  },
                  zlevel: 2,
                  barWidth: 20,
                  data: barData2,
                },
                { // 折线
                  zlevel: 4,
                  type: "line",
                  name: '订单金额折线',
                  color: ["#301de0"],  // 拐点颜色
                  symbolSize: 8,   // 拐点的大小
                  symbol: "circle",  // 拐点样式
                  data: lineData1,
                  itemStyle: {
                    normal: {
                      lineStyle: {
                        color: "#8d83f7", // 折线的颜色
                        type: "solid" // 折线的类型
                      }
                    }
                  },
                  tooltip: {
                    formatter: '{b}<br/>订单金额:{c}<br/>'
                  }
                },
                { // 折线
                  zlevel: 5,
                  type: "line",
                  name: '订单量折线',
                  color: ["#a800ff"],  // 拐点颜色
                  symbolSize: 8,   // 拐点的大小
                  symbol: "circle",  // 拐点样式
                  data: lineData2,
                  itemStyle: {
                    normal: {
                      lineStyle: {
                        color: "#8d83f7", // 折线的颜色
                        type: "solid" // 折线的类型
                      }
                    }
                  },
                  tooltip: {
                    formatter: '{b}<br/>订单量:{c}<br/>'
                  }
                }
              ],
            });
          },
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
  • 相关阅读:
    Linux-进程管理
    JAVA8新特性
    前后端分离--Vue的入门基础版
    upload-labs通关
    android 快速实现 圆角矩形控件 及 圆形控件
    Nginx之正则表达式、location匹配简介及rewrite重写
    vs2019+Qt 使用 Qlabel 在界面上显示图像及显示失真问题
    MapReduce(二)
    必知必会打包工具tsup原理解析
    新媒体时代如何做好新型的网络口碑营销?
  • 原文地址:https://blog.csdn.net/qq_42482058/article/details/125554390