1. vue-bulma-chartist
Chartist component for Vue Bulma
vue-bulma-chartist
Package: vue-bulma-chartist
Created by: vue-bulma
Last modified: Tue, 28 Jun 2022 19:05:17 GMT
Version: 1.1.0
License: MIT
Downloads: 371
Repository: https://github.com/vue-bulma/chartist

Install

npm install vue-bulma-chartist
yarn add vue-bulma-chartist

Chartist

Chartist component is based on Chartist for Vue Bulma.

Installation

$ npm install vue-bulma-chartist

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



fundon.me  · 
GitHub @fundon  · 
Twitter @_fundon

Dependencies

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin