An open API service indexing awesome lists of open source software.

https://github.com/vue-bulma/chartist

Chartist component for Vue Bulma
https://github.com/vue-bulma/chartist

Last synced: 7 months ago
JSON representation

Chartist component for Vue Bulma

Awesome Lists containing this project

README

          

# Chartist

Chartist component is based on [Chartist](http://gionkunz.github.io/chartist-js/) for Vue Bulma.

## Installation

```
$ npm install vue-bulma-chartist
```

## Examples

```vue

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
}
}
}
}
}

```

## Badges

![](https://img.shields.io/badge/license-MIT-blue.svg)
![](https://img.shields.io/badge/status-stable-green.svg)

---

> [fundon.me](https://fundon.me)  · 
> GitHub [@fundon](https://github.com/fundon)  · 
> Twitter [@_fundon](https://twitter.com/_fundon)