mpvue 使用echarts---mpvue-echarts

安裝

mpvue-echarts地址
mpvue-echarts

$ cnpm install mpvue-echarts
$ cnpm install echarts

DEMO

<template>
  <div class="wrap">
    <mpvue-echarts :echarts="echarts" :onInit="ecBarInit" canvasId="bar" />
    <mpvue-echarts :echarts="echarts" :onInit="ecScatterInit" canvasId="scatter" />
  </div>
</template>

<script>
import * as echarts from 'echarts/dist/echarts.min'
import mpvueEcharts from 'mpvue-echarts'
let barChart, scatterChart
function getBarOption () {
  return {
    color: ['#37a2da', '#32c5e9', '#67e0e3'],
    tooltip: {
      trigger: 'axis',
      axisPointer: { // 坐標軸指示器,坐標軸觸發(fā)有效
        type: 'line' // 默認為直線隧魄,可選為:'line' | 'shadow'
      }
    },
    legend: {
      data: ['熱度', '正面', '負面']
    },
    grid: {
      left: 20,
      right: 20,
      bottom: 15,
      top: 40,
      containLabel: true
    },
    xAxis: [
      {
        type: 'value',
        axisLine: {
          lineStyle: {
            color: '#999'
          }
        },
        axisLabel: {
          color: '#666'
        }
      }
    ],
    yAxis: [
      {
        type: 'category',
        axisTick: { show: false },
        data: ['汽車之家', '今日頭條', '百度貼吧', '一點資訊', '微信', '微博', '知乎'],
        axisLine: {
          lineStyle: {
            color: '#999'
          }
        },
        axisLabel: {
          color: '#666'
        }
      }
    ],
    series: [
      {
        name: '熱度',
        type: 'bar',
        label: {
          normal: {
            show: true,
            position: 'inside'
          }
        },
        data: [300, 270, 340, 344, 300, 320, 310]
      },
      {
        name: '正面',
        type: 'bar',
        stack: '總量',
        label: {
          normal: {
            show: true
          }
        },
        data: [120, 102, 141, 174, 190, 250, 220]
      },
{
        name: '負面',
        type: 'bar',
        stack: '總量',
        label: {
          normal: {
            show: true,
            position: 'left'
          }
        },
        data: [-20, -32, -21, -34, -90, -130, -110]
      }
    ]
  }
}
function getScatterOption () {
  var data = []
  var data2 = []
  for (var i = 0; i < 10; i++) {
    data.push(
      [
        Math.round(Math.random() * 100),
        Math.round(Math.random() * 100),
        Math.round(Math.random() * 40)
      ]
    )
    data2.push(
      [
        Math.round(Math.random() * 100),
        Math.round(Math.random() * 100),
        Math.round(Math.random() * 100)
     ]
    )
  }
  var axisCommon = {
    axisLabel: {
      textStyle: {
        color: '#C8C8C8'
      }
    },
    axisTick: {
      lineStyle: {
        color: '#fff'
      }
    },
    axisLine: {
      lineStyle: {
        color: '#C8C8C8'
      }
    },
    splitLine: {
      lineStyle: {
        color: '#C8C8C8',
        type: 'solid'
      }
    }
  }
  return {
    color: ['#FF7070', '#60B6E3'],
    backgroundColor: '#eee',
    xAxis: axisCommon,
    yAxis: axisCommon,
    legend: {
      data: ['aaaa', 'bbbb']
    },
    visualMap: {
      show: false,
      max: 100,
      inRange: {
        symbolSize: [20, 70]
      }
    },
    series: [{
      type: 'scatter',
      name: 'aaaa',
      data: data
    },
    {
      name: 'bbbb',
      type: 'scatter',
      data: data2
    }
    ],
    animationDelay: function (idx) {
      return idx * 50
    },
    animationEasing: 'elasticOut'
  }
}
export default {
  data () {
    return {
      echarts,
      ecBarInit: function (canvas, width, height) {
        barChart = echarts.init(canvas, null, {
          width: width,
          height: height
        })
        canvas.setChart(barChart)
        barChart.setOption(getBarOption())
        return barChart
      },
      ecScatterInit: function (canvas, width, height) {
        scatterChart = echarts.init(canvas, null, {
          width: width,
          height: height
        })
        canvas.setChart(scatterChart)
        scatterChart.setOption(getScatterOption())
        return scatterChart
      }
    }
  },
  components: {
    mpvueEcharts
  },
  onShareAppMessage () {}
}
</script>

<style scoped>
.wrap {
  width: 100%;
  height: 400px;
}
</style>
效果圖
image.png
折線圖
<template>
  <div class="container">
    <div class="wrap">
      <mpvue-echarts :echarts="echarts" :onInit="onInit" />
    </div>
  </div>
</template>

<script>
import * as echarts from 'echarts/dist/echarts.simple.min'
import mpvueEcharts from 'mpvue-echarts'
function initChart (canvas, width, height) {
  const chart = echarts.init(canvas, null, {
    width: width,
    height: height
  })
  canvas.setChart(chart)
  var option = {
    backgroundColor: '#fff',
    color: ['#37A2DA', '#67E0E3'],
   
    legend: {
      data: ['A', 'B']
    },
    grid: {
      containLabel: true
    },
    xAxis: {
      type: 'category',
      data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
    },
yAxis: {
      x: 'center',
      type: 'value',
      splitLine: {
        lineStyle: {
          type: 'dashed'
        }
      }
    },
    series: [{
      name: 'A',
      type: 'line',
      smooth: true,
      data: [18, 36, 65, 30, 78, 40, 33]
    }, {
      name: 'B',
      type: 'line',
      smooth: true,
      data: [12, 50, 51, 35, 70, 30, 20]
    }]
  }
  chart.setOption(option)
  return chart
}
export default {
  data () {
    return {
      echarts,
      onInit: initChart
    }
  },
  components: {
    mpvueEcharts
  },
  onShareAppMessage () {}
}
</script>

<style scoped>
.wrap {
  width: 100%;
  height: 300px;
}
</style>
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末笋婿,一起剝皮案震驚了整個濱河市破花,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌企孩,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異衷恭,居然都是意外死亡,警方通過查閱死者的電腦和手機纯续,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門随珠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人猬错,你說我怎么就攤上這事窗看。” “怎么了倦炒?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵显沈,是天一觀的道長。 經(jīng)常有香客問我逢唤,道長拉讯,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任鳖藕,我火速辦了婚禮魔慷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘著恩。我一直安慰自己院尔,他們只是感情好蜻展,可當我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著邀摆,像睡著了一般纵顾。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上隧熙,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天片挂,我揣著相機與錄音,去河邊找鬼贞盯。 笑死音念,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的躏敢。 我是一名探鬼主播闷愤,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼件余!你這毒婦竟也來了讥脐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤啼器,失蹤者是張志新(化名)和其女友劉穎旬渠,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體端壳,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡告丢,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了损谦。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片岖免。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖照捡,靈堂內(nèi)的尸體忽然破棺而出颅湘,到底是詐尸還是另有隱情,我是刑警寧澤栗精,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布闯参,位于F島的核電站,受9級特大地震影響悲立,放射性物質(zhì)發(fā)生泄漏鹿寨。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一级历、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧叭披,春花似錦寥殖、人聲如沸玩讳。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽熏纯。三九已至,卻和暖如春粤策,著一層夾襖步出監(jiān)牢的瞬間樟澜,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工叮盘, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留秩贰,地道東北人。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓柔吼,卻偏偏與公主長得像毒费,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子愈魏,可洞房花燭夜當晚...
    茶點故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內(nèi)容

  • ECharts是一款開源的統(tǒng)計圖表框架觅玻,ECharts 底層依賴 ZRender,ZRender是一個輕量級的二維...
    程就人生閱讀 1,538評論 0 1
  • 本文作者鋼頭娃培漏,轉(zhuǎn)載請備注 Echarts 快速入門 Echarts 介紹 ECharts溪厘,一個使用 JavaSc...
    程序猿tx閱讀 909評論 0 2
  • 之前自學的時候也使用過echarts來制作柱狀圖,折線圖牌柄,地圖畸悬,現(xiàn)在想想那時候做的簡直是太LOW了,就是簡單的在官...
    _信仰zmh閱讀 82,090評論 23 66
  • 前言 公司要求完成一個簡單的報表系統(tǒng)友鼻,因此我使用的是比較多人使用的eCharts傻昙,然后在vue的打包項目中使用,最...
    覓月閱讀 1,875評論 0 4
  • 圖片發(fā)自簡書App 做夢彩扔,離風很遠估計隔著窗紗的距離 夜晚拋開星光李白的月亮還沒有出沒有她們世界丟失了喧鬧只是妆档,為...
    銀城閱讀 1,477評論 16 54