Results:
Loading...

Vue ChartsGet Started with AG Charts

AG Charts is a powerful standalone component with no dependencies. The charts factory API can be used to seamlessly create and update data visualizations independently of the grid.

Quick Look Code Example
<template>
   <ag-charts-vue :options="options"></ag-charts-vue>
</template>

<script>
    import { AgChartsVue } from "ag-charts-vue3";

    export default {
        name: 'App',
        components: {
            AgChartsVue,
        },
        data: function () {
            return {
                options: {
                    data: [
                      {
                        beverage: 'Coffee',
                        Q1: 450,
                        Q2: 560,
                        Q3: 600,
                        Q4: 700,
                      },
                      {
                        beverage: 'Tea',
                        Q1: 270,
                        Q2: 380,
                        Q3: 450,
                        Q4: 520,
                      },
                      {
                        beverage: 'Milk',
                        Q1: 180,
                        Q2: 170,
                        Q3: 190,
                        Q4: 200,
                      },
                    ],
                    title: {
                      text: 'Beverage Expenses',
                    },
                    subtitle: {
                      text: 'per quarter',
                    },
                    footnote: {
                      text: 'Based on a sample size of 200 respondents',
                    },
                    padding: {
                      top: 40,
                      right: 40,
                      bottom: 40,
                      left: 40,
                    },
                    series: [
                      { type: 'column', xKey: 'beverage', yKey: 'Q4', stacked: true },
                      { type: 'column', xKey: 'beverage', yKey: 'Q3', stacked: true },
                      { type: 'column', xKey: 'beverage', yKey: 'Q2', stacked: true },
                      { type: 'column', xKey: 'beverage', yKey: 'Q1', stacked: true },
                    ],
                    legend: { spacing: 40 },
                },
            };
        },
    };
</script>

<style>
</style>
import { createApp } from 'vue'
import App from './App.vue'

createApp(App).mount('#app')

The "Quick Look Code" above is different to the code that runs in Stackblitz - this is because Stackblitz doesn't support .vue files at this time.

Getting Started

In this article we will walk through the necessary steps to add AG Charts to an existing Vue project and produce your first charts.

Add AG Charts to Your Project

For the purposes of this tutorial, we are going to scaffold an Vue app with the Vue CLI.

Don't worry if your project has a different configuration. AG Charts and its Vue wrapper are distributed as NPM packages and work with any common Vue project setup.

Let's follow the Vue CLI instructions and run the following in your terminal:

npm install -g @vue/cli
vue create my-project

When prompted choose default (babel, eslint):

Select Default Features

We're now ready to start our application:

cd my-project
npm run serve

If everything goes well, npm run serve has started the web server. You can open the default app at localhost:8080.

Let's add the AG Charts NPM packages. Run the following command in my-project (you may need a new instance of the terminal):

npm install --save ag-charts-community ag-charts-vue3 vue-property-decorator

After a few seconds of waiting, you should be good to go. Let's get to the actual coding! As a first step, let's add the AG Charts module. As this will be a simple example we can delete the src/components directory. Our example application will live in src/App.vue.

Let's add the component definition to our template. Edit src/App.vue and replace the scaffold code:

<template>
  <div id="app">
      <ag-charts-vue :options="options"></ag-charts-vue>
  </div>
</template>

Next, let's declare the basic charts configuration. Edit src/App.vue:

<script>
  import { AgChartsVue } from 'ag-charts-vue3';

  export default {
    name: 'App',
    components: {
      AgChartsVue,
    },
    data() {
      return {
        options: {
          data: [
            {
                  quarter: 'Q1',
                  spending: 450,
            },
            {
                  quarter: 'Q2',
                  spending: 560,
            },
            {
                  quarter: 'Q3',
                  spending: 600,
            },
            {
                  quarter: 'Q4',
                  spending: 700,
            },
          ],
          series: [{
            xKey: 'quarter',
            yKey: 'spending',
          }],
        },
      };
    },
  };
</script>

Here we'll provide the options we want to use for our chart, including the series to use to plot the data.

The series type defaults to 'line' so the only series configuration we need to specify is to tell the series which keys to use to fetch the data to be plotted along the horizontal (x) and vertical (y) axes.

The series property is an array because it is possible to supply multiple series (including mixed kinds!) into a single chart.

The default axes configuration is a category axis on the bottom and number axis on the left of a chart, both of which are exactly what we need in this case, so we don't need to supply these here.

The chart also features a legend by default which uses the yKey for the series, which in this case is 'spending'.

Line chart

Customising the Legend

If we don't want the legend to show the yKey itself we can give it a name, for example 'Coffee Spending'.

This name is more descriptive but also longer, so let's position the legend on the bottom of the chart to make more space for the series:

data() {
  return {
    options: {
      data: [
        {
          quarter: 'Q1',
          spending: 450,
        },
        {
          quarter: 'Q2',
          spending: 560,
        },
        {
          quarter: 'Q3',
          spending: 600,
        },
        {
          quarter: 'Q4',
          spending: 700,
        },
      ],
      series: [{
        xKey: 'quarter',
        yKey: 'spending',+       yName: 'Coffee Spending',  }],+     legend: {
+       position: 'bottom',
+ },    },
  };}
Line chart with legend

Basic Column Chart

Now let's try something more interesting. Let's say you want to visualise how much is spent on coffee, milk and tea in your company each quarter and in total. Your data might look something like this:

data = [
    {
        beverage: 'Coffee',
        Q1: 450,
        Q2: 560,
        Q3: 600,
        Q4: 700,
    },
    {
        beverage: 'Tea',
        Q1: 270,
        Q2: 380,
        Q3: 450,
        Q4: 520,
    },
    {
        beverage: 'Milk',
        Q1: 180,
        Q2: 170,
        Q3: 190,
        Q4: 200,
    },
];

This time, let's choose another series type to plot the data: stacked columns. Here's the chart configuration we can use to do that:

data() {
  return {
    options: {
      data: [
        {
          beverage: 'Coffee',
          Q1: 450,
          Q2: 560,
          Q3: 600,
          Q4: 700,
        },
        {
          beverage: 'Tea',
          Q1: 270,
          Q2: 380,
          Q3: 450,
          Q4: 520,
        },
        {
          beverage: 'Milk',
          Q1: 180,
          Q2: 170,
          Q3: 190,
          Q4: 200,
        },
      ],
      series: [
          { type: 'column', xKey: 'beverage', yKey: 'Q4', stacked: true },
          { type: 'column', xKey: 'beverage', yKey: 'Q3', stacked: true },
          { type: 'column', xKey: 'beverage', yKey: 'Q2', stacked: true },
          { type: 'column', xKey: 'beverage', yKey: 'Q1', stacked: true },
      ],
    },
  };
}

Chart tooltips are enabled by default so you can hover over a block to see its value.

Column chart

Labels and Titles

We can enhance our chart by providing a label for each block segment. We can set a label's fontSize, fontFamily and other properties, but for now we'll just accept the default values:

data() {
  return {
    options: {
      data: [
        {
          beverage: 'Coffee',
          Q1: 450,
          Q2: 560,
          Q3: 600,
          Q4: 700,
        },
        {
          beverage: 'Tea',
          Q1: 270,
          Q2: 380,
          Q3: 450,
          Q4: 520,
        },
        {
          beverage: 'Milk',
          Q1: 180,
          Q2: 170,
          Q3: 190,
          Q4: 200,
        },
      ],
      series: [
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q4',
          stacked: true,+         label: {},        },
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q3',
          stacked: true,+         label: {},        },
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q2',
          stacked: true,+         label: {},        },
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q1',
          stacked: true,+         label: {},        },
      ],
    },
  };}
Column chart with labels

If we then want to add a title and subtitle to the chart, we can simply add this to our chart config:

data() {
  return {
    options: {
      data: [
        {
          beverage: 'Coffee',
          Q1: 450,
          Q2: 560,
          Q3: 600,
          Q4: 700,
        },
        {
          beverage: 'Tea',
          Q1: 270,
          Q2: 380,
          Q3: 450,
          Q4: 520,
        },
        {
          beverage: 'Milk',
          Q1: 180,
          Q2: 170,
          Q3: 190,
          Q4: 200,
        },
  ],+     title: {
+       text: 'Beverage Expenses',
+     },
+     subtitle: {
+       text: 'per quarter',
+     },
+     footnote: {
+       text: 'Based on a sample size of 200 respondents',
+ },      series: [
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q4',
          stacked: true,
          label: {},
        },
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q3',
          stacked: true,
          label: {},
        },
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q2',
          stacked: true,
          label: {},
        },
        {
          type: 'column',
          xKey: 'beverage',
          yKey: 'Q1',
          stacked: true,
          label: {},
        },
      ],
    },
  };}
Column chart with captions

Now that you've had a taste of what it's like to use AG Charts, we encourage you to explore our documentation to learn more.