Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vue-chartisan

hadefication29MIT0.1.10

Just another Chartist port to Vue

vue, chartist, charts, svg charts, component

readme

Vue Chartisan

Just another Vue wrapper for Chartist charting library.

Usage

Install it by running npm i vue-chartisan or yarn add vue-chartisan or even use unpkg by adding <script src="https://unpkg.com/vue-chartisan@0.1.7/dist/vue-chartisan.min.js"/> in your page, just pick your poison!

ES6

// App.vue
<template>
    <div id="app">
        <bar-chart :data="{}" :options="{}"/>
        <line-chart :data="{}" :options="{}"/>
        <pei-chart :data="{}" options="{}" :responsive-options="[]"/>
    </app>
</template>

// app.js
import Vue from 'vue';
import VueChartisan from 'vue-chartisan';
import App from './path/to/App.vue';
import 'vue-chartisan/dist/vue-chartisan.min.css';

Vue.use(VueChartisan);

new Vue({
    el: '#app',
    render: h => h(App)
});

UMD

// App.vue
<template>
    <div id="app">
        <bar-chart :data="{}" :options="{}"/>
        <line-chart :data="{}" :options="{}"/>
        <pei-chart :data="{}" options="{}" :responsive-options="[]"/>
    </app>
</template>

// app.js 
window.Vue = require('vue');

Vue.use(require('vue-chartisan'));

require('vue-chartisan/dist/vue-chartisan.min.css');

new Vue({
    el: '#app',
    render: h => h(require('./path/to/App.vue'))
});

UNPKG

// stylesheet
    ...
    <link rel="stylesheet" href="https://unpkg.com/vue-chartisan@0.1.7/dist/vue-chartisan.min.css">
</head>

// body
<body>
    <div id="app">
        <bar-chart :data="{}" :options="{}"/>
        <line-chart :data="{}" :options="{}"/>
        <pei-chart :data="{}" options="{}" :responsive-options="[]"/>
    </div>

...
        <script src="https://unpkg.com/vue@2.5.17/dist/vue.js"></script>
        <script src="https://unpkg.com/chartist@0.11.0/dist/chartist.js"></script>
        <script src="https://unpkg.com/vue-chartisan@0.1.7/dist/vue-chartisan.min.js"></script>
        <script>
            new Vue({
                el: '#app'
            })
        </script>
    </body>
</html>

You can also use individually the exposed components anywhere without doing that standard approach by importing it from the module. See code below:

// App.vue
<template>
    <bar-chart :data="{}" :options="{}"/>
    <line-chart :data="{}" :options="{}"/>
    <pei-chart :data="{}" options="{}" :responsive-options="[]"/>
</template>

<script>
    import { BarChart, PieChart, LineChart } from 'vue-chartisan';

    export default {
        components: {
            BarChart,
            PieChart,
            LineChart
        }
    }
</script>

Component Usage

All of the available components has two props namely data and options that expects an object value with the exception of PieChart that has an extra props/param responsive-options that accepts an array.

// Chartist (Bar)
new Chartist.Bar('.ct-chart', {
    labels: [1, 2, 3, 4, 5, 6, 7],
    series: [
        [1, 3, 2, -5, -3, 1, -6],
        [-5, -2, -4, -1, 2, -3, 1]
    ]
}, {
    seriesBarDistance: 12,
    low: -10,
    high: 10
});

// VueChartisan (BarChart)
<template>
    <bar-chart 
        :data="{
            labels: [1, 2, 3, 4, 5, 6, 7],
            series: [
                [1, 3, 2, -5, -3, 1, -6],
                [-5, -2, -4, -1, 2, -3, 1]
            ]
        }"
        :options="{
            seriesBarDistance: 12,
            low: -10,
            high: 10
        }"/>
</template>

<script>
    import { BarChart } from 'vue-chartisan';
    export default {
        components: {
            BarChart
        }
    }
</script>