vue中v-charts的使用
官方文档:https://v-charts.js.org/#/
在使用 echarts 生成图表时,经常需要做繁琐的数据类型转化、修改复杂的配置项,v-charts 的出现正是为了解决这个痛点。基于 Vue2.0 和 echarts 封装的 v-charts 图表组件,只需要统一提供一种对前后端都友好的数据格式设置简单的配置项,便可轻松生成常见的图表。
1:在初次安装的时候,用的是官方推荐
npm i v-charts echarts -S
但是在引入的时候总是报错,换了下面这个指令就可以了,
npm install v-echarts echarts --save
2:可以按需引入或者全局引入
全局引入:
// main.js
import Vue from 'vue'
import VCharts from 'v-charts'
import App from './App.vue'
Vue.use(VCharts)
new Vue({
el: '#app',
render: h => h(App)
})
用法:柱状图
<div style="overflow-x:auto">
<div class="box">
<ve-histogram :width="widthpx" :extend="extend"></ve-histogram>
</div>
</div>
//折线图
<div style="overflow-y:auto;height:100vh">
<div class="box" style="width:100vw;overflow-x:auto;">
<div class="line" v-bind:style="'width:'+imglength+'px'">
<ve-line :data="chartData" :extend="extend" v-if='hackReset'></ve-line>
</div>
</div>
</div>
【列】按需引入:
import Vue from 'vue'
import VeLine from 'v-charts/lib/line'
import App from './App.vue'
Vue.component(VeLine.name, VeLine)
new Vue({
el: '#app',
render: h => h(App)
})
二。另外一个移动端组件
教程:https://www.yuque.com/antv/f2/getting-started
demo:https://antv.alipay.com/zh-cn/f2/3.x/demo/index.html
安装
npm install @antv/f2 --save
成功安装完成之后,即可使用 import 或 require 进行引用。
const F2 = require('@antv/f2');