Echarts柱状图 折线图混合效果

Echarts柱状图 yekong 1228℃

Echarts柱状图 折线图混合效果

<template>
  <div class="items">
    <item title="zhu1">
      <zhu class="zhu"></zhu>
    </item>
  </div>
</template>

<script>
import item from "@/components/item";
import zhu from "@/components/zhu/zhu/zhu";

export default {
  data() {
    return {}
  },
  components: {
    item,
    zhu
  },
  created() {

  },
  watch: {},
  mounted() {
    new this.$wow.WOW().init()
  },
  methods: {},
  filters: {}
}
</script>

<style lang="scss" scoped>
.homebody {
  width: 100%;
  position: relative;
  height: 100%;
  background: #09254C;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
}

.homemainctop {
  width: 100%;
}

.itembody {
  position: relative;
  width: 100%;
  height: 100%;
}

.items {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0F75C1;
}

.bars {
  width: 100%;
  height: calc(100% - 50PX);
  position: relative;
}
</style>

喜欢 (0)