vue基于原生js、canvas实现折线图替换echart

项目中需要一个简单的折线图,引入echarts,但是打包后体积增大了很多差不多2M,觉得成本划不来,所以自己做了一个,效果也还行。
基本思想是利用canvas画出静态的坐标轴、数据点。提示tooltip是div,监听mousemove事件,获取clientX,
遍历数据点坐标数组(画静态坐标点的时候生成),找到当前client对应的点,translate到该点。

chartLine.png
chartLine1.png

附上代码

<template>
  <div style="height:250px">
    <div class="canvas-wrapper">
      <div class="tool-tip"
           id="toolTip"
           :content="tcontent"
           v-show="toolTip.show"
           :style="'transform:translateX('+cX+'px);top:'+ttp.top+'px'">
      </div>
      <canvas id="can">浏览器不支持canvas</canvas>
    </div>
  </div>
</template>

<script>
export default {
  data () {
    return {
      xdata: [1, 2, 3], //纵坐标数据
      ydata: [34565, 3455, 900007],//横坐标
      toolTip: {
        gw: 0,//x轴刻度之间距离
        xPoints: [],//数据点的坐标
        show: false,//是否显示提示

      },
      ttp: 0, //tooltip的y轴坐标
      tcontent: '', //tooltip显示的内容
      cX: 0, //toolTip定位坐标
    }
  },

  watch: {//可以在此监听props,然后更新chart
  },
  //折线color、点color、提示color
  mounted () {
    const toolTip = document.getElementById('toolTip')
    let start = new Date() //throttle
    const ctx = document.getElementById('can')
    this.initLine()
    let _this = this
    ctx.addEventListener('mousemove', (e) => {
      _this.toolTip.show = true
      if (new Date() - start > 500) {//throttle节流
        start = new Date()
       // console.log(e.clientX, e.clientY)
       // console.log(_this.toolTip.xPoints)
        let p = _this.toolTip.xPoints
        let gw = _this.toolTip.gw / 2
        for (let i = p.length - 1; i >= 0; i--) {
          //遍历坐标点,找到该次事件对应的点
          if (e.clientX > p[i].x - gw && e.clientX <= p[i].x + gw) {
            _this.cX = p[i].x
            _this.tcontent = _this.ydata[i] + '\n' + _this.xdata[i]
            break
          }
        }
      }
    })
    ctx.addEventListener('mouseleave', () => {
      setTimeout(() => {
        _this.toolTip.show = false
      }, 2000);
    })
  },
  methods: {
    //初始化
    initLine () {
      let arr = this.ydata
      let max = arr[0]
      arr.forEach(e => {
        max = Math.max(max, e)
      })
      const gap = this.getGap(max)
      const len = Math.ceil(max / gap) + 1

      const ctx = document.getElementById('can')
      const wrapper = ctx.parentElement
      //设置高度
      let width = wrapper.offsetWidth //width
      //document.getElementById('toolTip').style.top = wrapper.offsetTop + 'px'
      //console.log(wrapper.offsetTop)
      let height = wrapper.offsetHeight//height
      let x = wrapper.offsetLeft
      let y = wrapper.offsetTop

      ctx.style.width = width + 'px'
      ctx.style.height = height + 'px'

      if (window.devicePixelRatio > 1) {
        ctx.width = width * window.devicePixelRatio
        ctx.height = height * window.devicePixelRatio
      } else {
        ctx.width = width
        ctx.height = height
      }
      //绘坐标轴
      this.draw(width, height, x, y, gap, len, this.xdata, arr)
      let _this = this
      new Promise(() => {
        let wrapper = document.getElementById('can').parentElement
        _this.ttp = wrapper.offsetTop
      })
    },
   // 绘坐标轴
    draw (width, height, x, y, gap, len, xdata, ydata) {

      //预留10px 高度作为x轴的标注
      const left = 0.5, bottom = height - 10.5, right = x + width
      const e = document.getElementById('can')
      const ctx = e.getContext("2d")
      //devicePixelRatio物理像素分辨率与CSS像素分辨率的比率,移动端分辨率高会模糊
      if (window.devicePixelRatio > 1) {
        ctx.scale(window.devicePixelRatio, window.devicePixelRatio)
      }

      ctx.beginPath();
      //y轴间隔高度
      const gapHeight = parseInt(height / len)
      //辅助横线
      for (let i = height - gapHeight, j = 1; i >= 0 && j < len; i -= gapHeight, j++) {
        ctx.moveTo(left + 30, i - 10.5)
        ctx.fillText(j * gap, 15, i - 8.5) //绘制y轴标注
        ctx.lineTo(right - 30, i - 10.5)
      }

      ctx.strokeStyle = 'rgba(0,0,0,.1)'
      ctx.stroke()
      ctx.closePath()
      ctx.beginPath();

      //绘制坐标轴 
      //y轴
      ctx.moveTo(left + 29, gapHeight / 2)
      ctx.lineTo(left + 29, bottom)
      //x轴
      this.toolTip.start = left + 30
      ctx.moveTo(left + 30, bottom)
      ctx.lineTo(right - 30, bottom)
      const xlen = xdata.length
      //x轴间隔
      const gw = (width - 60) / xlen
      this.toolTip.gw = gw
      //x轴标注与刻度
      for (let i = left + gw + 30, j = 0; j < xlen; j++ , i += gw) {
        if (j + 1 < xlen) {//横线
          ctx.moveTo(i, bottom)
          ctx.lineTo(i, bottom + 3)
        }
        //
        ctx.fillText(xdata[j], i - gw / 2 - 6, bottom + 10)
      }
      ctx.strokeStyle = "rgba(0,0,0,0.6)"
      ctx.stroke()
      ctx.beginPath()
      let points = []
      // 数据点
      for (let i = 1; i <= xlen; i++) {
        let yy = bottom - ydata[i - 1] * (gapHeight / gap)
        let xx = left + 30 + i * gw - gw / 2
        //ctx.moveTo(xx, yy)
        ctx.beginPath()
        ctx.arc(xx, yy, 2, 0, 2 * Math.PI);
        ctx.fillStyle = "#fbc12a"
        ctx.strokeStyle = '#fbc12a'
        ctx.fill()
        ctx.stroke()
        // ctx.fillText(ydata[i - 1], xx - 5, yy - 10)
        points.push({ x: parseFloat(xx), y: parseFloat(yy) })
      }
      this.toolTip.xPoints = points


      ctx.closePath()
      ctx.beginPath()
      for (let i = xlen - 1; i > 0; i--) {
        let cur = points[i]
        if (i == 0) {
          break
        }
        let next = points[i - 1]
        ctx.moveTo(cur.x, cur.y)
        ctx.lineTo(next.x, next.y)

      }
      ctx.lineJoin = 'round'
      ctx.strokeStyle = 'rgba(251,193,42,0.6)'
      ctx.lineWidth = 1
      ctx.stroke()
    },
    // 获取y轴刻度间隔
    getGap (num) {
      if (!num) return 0
      if (num <= 10) return num < 7 ? 1 : 2
      if (num > 10 && num <= 100) return num < 70 ? 10 : 20
      if (num > 100 && num <= 1000) return num < 700 ? 100 : 200
      if (num > 1000 && num <= 10000) return num < 7000 ? 1000 : 2000
      if (num > 10000 && num <= 100000) return num < 70000 ? 10000 : 20000
      if (num > 100000 && num <= 1000000) return num < 700000 ? 100000 : 200000
      if (num > 1000000 && num <= 10000000) return num < 7000000 ? 1000000 : 2000000
      if (num > 10000000 && num <= 100000000) return num < 70000000 ? 10000000 : 20000000
    },
  }
}
</script>
<style lang="less" scoped>
.canvas-wrapper {
  height: inherit;
  width: 100%;
  position: absolute;
  z-index: inherit;
}

.tool-tip {
  position: absolute;
  z-index: 100000;
  display: inline-block;
  height: 220px;
  width: 1px;
  background: rgba(0, 0, 0, 0.5);

  &::after {
    content: attr(content);
    color: #fbc12a;
    word-break: break-all;
    white-space: pre;
    position: relative;
    left: 10px;
    top: 50px;
    line-height: 20px;
    border-radius: 4px;
    display: inline-block;
    min-width: 50px;
    min-height: 25px;
    background: rgba(0, 0, 0, 0.5);
  }
}
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容