当前位置:   article > 正文

echarts 多折线天气组件_echarts天气预报 表格+折线图

echarts天气预报 表格+折线图


<template>
  <div style="width: 100%; height: 100%" ref="lineChart" class="heightclass"></div>
</template>

<script>
import * as echarts from "echarts";

export default {
  props: {
    //x轴数据
    XAxis: {
      type: Array,
      default: () => []
    },
    //y轴数据
    YAxis: {
      type: Array,
      default: () => []
    },
    YAxis2: {
      type: Array,
      default: () => []
    },
    YAxis3: {
      type: Array,
      default: () => []
    },
    //名字
    DataName: {
      type: String,
    },
    //类型
    typeName: {
      type: String,
      default: '降雨量'
    },
    //刷新
    refresh: {
      type: Number
    }
  },
  data () {
    return {
      chart: null
    }
  },
  mounted () {
    this.initChart();
    window.addEventListener("resize", this.resizeChart);
  },
  watch: {
    refresh () {
      if (this.chart) {
        this.chart.dispose();
        this.chart = null;
      }
      this.initChart();
    }
  },
  methods: {
    //初始化图表
    initChart () {
      this.chart = echarts.init(this.$refs.lineChart);

      let that = this

      let option = {
        color: ["#3398DB", "red", 'yellow'],
        tooltip: {
          trigger: 'axis',
          // formatter: function (params) {
          //   let typeName = that.typeName

          //   return `时间:${params[0].name}<br>${typeName}:${params[0].value}`;
          // },
          axisPointer: {
            type: 'cross'
          },
          textStyle: {
            color: '#fff',
            fontStyle: 'normal',
            fontFamily: '微软雅黑',
            fontSize: 12,
          },
          backgroundColor: "transparent"
        },

        legend: {
          data: ['温度(℃)', '降雨量(mm)', '风速(m/s)'],
          right: 10,
          textStyle: {
            color: '#fft'
          }
        },

        title: {
          show: true, //显示策略,默认值true,可选为:true(显示) | false(隐藏)
          text: this.DataName, //主标题文本,'\n'指定换行
          x: 'left', //水平安放位置,默认为'left',可选为:'center' | 'left' | 'right' | {number}(x坐标,单位px)
          textStyle: { //主标题文本样式{"fontSize": 18,"fontWeight": "bolder","color": "#333"}
            fontFamily: 'Arial, Verdana, sans...',
            fontSize: 25,
            fontStyle: 'normal',
            fontWeight: '700',
            color: "#fff"
          },

        },
        grid: {
          top: '10%',
          left: '6%',
          right: '3%',
          bottom: '5%',
          containLabel: true
        },
        xAxis: [
          {
            type: "category",
            data: this.XAxis,
            axisPointer: {
              type: "shadow",
            },
            axisLabel: {
              show: true,
              color: "#3398DB",
              // 横坐标自定义展示
               formatter: function (value) {
              if (value.length > 10) {
              value = value.substring(0, 11);
              }
              return value;
              },
            },
            axisLine: {
              lineStyle: {
                color: "#3398DB"
              },
            },
          },
        ],
        yAxis: [
          {
            type: "value",
            axisLabel: {
              show: true,
              color: "#3398DB"
            },
            axisLine: {
              lineStyle: {
                color: "#3398DB", // 颜色
              },
            },
            splitLine: {
              show: true,
              lineStyle: {
                color: 'rgba(61,91,98,0.8)',
                type: "dashed"
              }
            }
          }
        ],
        dataZoom: [
          {
            type: "inside", //slider表示有滑动块的,
            show: true,
            xAxisIndex: [0], //表示x轴折叠
            start: 1, //数据窗口范围的起始百分比,表示1%
            end: 100, //数据窗口范围的结束百分比,表示35%坐标
          },
        ],
        series: [
          {
            name: '温度',
            type: "line",
            data: this.YAxis,
          },
          {
            name: '降雨量',
            type: "line",
            data: this.YAxis2,
          },
          {
            name: '风力风向',
            type: "line",
            data: this.YAxis3,
          }
        ]
      };
      this.chart.setOption(option);
    },
    resizeChart () {
      if (this.chart) {
        this.chart.resize();
      }
    }
  }
}
</script>

<style lang="scss" scoped>
.heightclass {
  min-height: 276px;
}
</style>
  • 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
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/208725
推荐阅读
相关标签
  

闽ICP备14008679号