1.0.3 • Published 5 years ago

bic-echarts-plugin v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

bic-echarts-plugin

针对数据可视化业务二次封装echarts,使得业务调用更加方便

use methods

全局引入

import BicEcharts from 'bic-echarts-plugin'

use使用

Vue.use(BicEcharts)

页面调用

<BicEcharts :data='dataObj' :chartId="chartId" :chartWidth="chartWidth" :chartHeight="chartHeight" :chartType="chartType" :axisVal="axisVal" :axisValOther="axisValOther" :chartColor="chartColor"></BicEcharts>

参数说明

  • data 实例化echarts需要的数据(必填)
  • chartId 图例的id(必填)
  • chartType 图例类型(必填目前支持5中图例(line:线图,bar:柱状图,distribution:分布图,columnChart:柱线图,circle:饼图))
  • chartWidth 图例宽度(非必填)
  • chartHeight 图例高度(非必填)
  • axisVal y轴显示的提示文字(非必填)
  • axisValOther y轴显示的提示文字(柱线图需要,当两个y轴时,非必填)
  • chartColor 图例颜色(非必填)