Open
Description
I just started using vue-chartist and I'm getting an odd "bowtie" effect with a line chart.
Here's the code I'm using:
<template>
<div>
<vue-chartist :data="pageViews" :options="options"
type="Line" />
</div>
</template>
<script>
import VueChartist from "v-chartist";
export default {
name: "App",
components: {
"vue-chartist": VueChartist
},
data() {
return {
pageViews: {
labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
series: [
[5, 2, 4, 2, 0]
]
},
options: {
fullWidth: true,
width: 600,
height: 300,
lineSmooth:false
}
};
}
};
</script>
Any idea why I'm seeing this?
Metadata
Metadata
Assignees
Labels
No labels