Skip to content

Odd issue with simple line graph #12

Open
@cfjedimaster

Description

@cfjedimaster

I just started using vue-chartist and I'm getting an odd "bowtie" effect with a line chart.

image

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions