2.2.0 • Published 8 months ago

bo-charts v2.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

BoCharts

echarts 图表的 vue2 组件封装

NPM 安装 BoCharts

npm i -S bo-charts

在 Vue2 中注册 BoCharts

import BoCharts from 'bo-charts'

Vue.use(BoCharts)

使用示例

<template>
  <bo-chart v-bind="option" />
</template>

<script>
  export default {
    computed: {
      option() {
        return {
          tooltip: {
            trigger: 'axis',
          },
          xAxis: {
            type: 'category',
            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
          },
          yAxis: {
            type: 'value',
          },
          series: [
            {
              data: [15123, 23000, 22499, 21800, 13500, 14700, 26099],
              type: 'line',
            },
          ],
        }
      },
    },
  }
</script>

<style></style>
2.2.0

8 months ago

2.1.0

3 years ago

2.1.0-beta

3 years ago

2.0.0

4 years ago

2.0.0-beta1

4 years ago

2.0.0-beta

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago