Answer the question
In order to leave comments, you need to log in
What is wrong with vue-chartist?
<template>
<vue-chartist :data="data" :options="options" type="Line"></vue-chartist>
</template>
<script>
import { mapGetters, mapActions } from 'vuex'
import * as VueChartist from 'v-chartist'
export default {
name: 'XXXname',
components: {
'vue-chartist': VueChartist
},
data() {
data: {
series: [
[1]
]
},
options: {
width: "490px",
height: "240px",
low: 1,
showArea: true,
fullWidth: true,
lineSmooth: VueChartist.Interpolation.simple()
}
}
}
</script>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question