1.1.4 • Published 7 years ago

vue-bulma-chartlist-plugin v1.1.4

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Chartist

sorry fork from http://gionkunz.github.io/chartist-js/

need to add plugin support

Chartist component is based on Chartist for Vue Bulma.

Installation

$ npm install vue-bulma-chartist-with-plugin

Examples

<template>
  <chart :type="'line'" :data="data" :options="options"></chart>
</template>

<script>
import Chart from 'vue-bulma-chartist'

export default {
  components: {
    Chart
  },

  data () {
    return {
      data: {
        labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
        series: [
          [12, 9, 7, 8, 5],
          [2, 1, 3.5, 7, 3],
          [1, 3, 4, 5, 6]
        ]
      },
      options: {
        fullWidth: true,
        chartPadding: {
          right: 40
        }
      }
    }
  }
}
</script>

Badges

npm.io npm.io


fundon.me  ·  GitHub @fundon  ·  Twitter @_fundon