Getting Started with the Vue Sparkline Component in Vue 3
24 Jul 202611 minutes to read
This article provides a step-by-step guide to creating a Vite JavaScript project and integrating the Syncfusion® Vue Sparkline component using either the Composition API or the Options API.
The Composition API groups related logic into reusable functions. The Options API organizes component logic with options such as data, methods, and life cycle hooks. Choose the API that best fits the application’s structure.
Prerequisites
Ensure that the development environment meets the system requirements for Syncfusion® Vue UI components.
Set Up the Vite Project
Create a Vite project using either npm or yarn.
npm
npm create vite@latest my-app -- --template vueyarn
yarn create vite my-app --template vueIf Vite prompts you to install dependencies and start the project immediately, select No. The Syncfusion package is installed in a later step.
Navigate to the project directory:
cd my-appInstall the project dependencies.
npm
npm installyarn
yarn installNote: To create a TypeScript project, use
npm create vite@latest my-app -- --template vue-tsoryarn create vite my-app --template vue-ts.
Add the Syncfusion® Vue Package
Syncfusion Vue packages are available on npm.
Install the @syncfusion/ej2-vue-charts package. Use a package release compatible with Vue 3 and the Node.js version used by the project.
npm
npm install @syncfusion/ej2-vue-chartsyarn
yarn add @syncfusion/ej2-vue-chartsNote: For TypeScript projects, refer to Vue 3 with the Composition API and TypeScript or Vue 3 with the Options API and TypeScript.
Add the Syncfusion® Vue Sparkline Component
Follow these steps to add the Vue Sparkline component using the Composition API or Options API.
Step 1: Import and Register the Component
Import the Sparkline component in src/App.vue.
In the Composition API example, alias the component import to the name used by the custom element in the template. Components imported in <script setup> are available directly in the template.
<script setup>
import {
SparklineComponent as EjsSparkline,
} from '@syncfusion/ej2-vue-charts';
</script><script>
import {
SparklineComponent,
} from '@syncfusion/ej2-vue-charts';
export default {
name: 'App',
components: {
'ejs-sparkline': SparklineComponent
}
};
</script>Step 2: Declare the Data and Configuration
Define the data source and Sparkline configuration values in the script section.
<script setup>
const dataSource = [
{ year: '2005', population: 20090440 },
{ year: '2006', population: 20264080 },
{ year: '2007', population: 20434180 },
{ year: '2008', population: 21007310 },
{ year: '2009', population: 21262640 },
{ year: '2010', population: 21515750 },
{ year: '2011', population: 21766710 },
{ year: '2012', population: 22015580 },
{ year: '2013', population: 22262500 },
{ year: '2014', population: 22507620 }
];
const type = 'Area';
const valueType = 'Category';
const xName = 'year';
const height = '200px';
</script><script>
export default {
data() {
return {
dataSource: [
{ year: '2005', population: 20090440 },
{ year: '2006', population: 20264080 },
{ year: '2007', population: 20434180 },
{ year: '2008', population: 21007310 },
{ year: '2009', population: 21262640 },
{ year: '2010', population: 21515750 },
{ year: '2011', population: 21766710 },
{ year: '2012', population: 22015580 },
{ year: '2013', population: 22262500 },
{ year: '2014', population: 22507620 }
],
type: 'Area',
valueType: 'Category',
xName: 'year',
height:'200px',
};
}
};
</script>Step 3: Define the Sparkline in the Template
Add the Sparkline component to the template section of src/App.vue.
The example uses the following properties:
-
dataSourcespecifies an array of data objects or aDataManagerinstance. -
xNamemaps the horizontal-value field. -
yNamemaps the numeric-value field. -
valueTypespecifies how the x-values are interpreted. -
typespecifies the Sparkline type. Supported values includeLine,Column,WinLoss,Pie, andArea; the default isLine.
<template>
<div id="app">
<ejs-sparkline
id="sparkline"
:dataSource="dataSource"
:xName="xName"
:yName="yName"
:valueType="valueType"
:type="type"
:height='height'
></ejs-sparkline>
</div>
</template>Each data object must contain the fields assigned to xName and yName. The field assigned to yName must contain a numeric value. Set valueType to Category when the field assigned to xName contains category strings.
Replace the contents of src/App.vue with either the Composition API or Options API example.
<template>
<div id="app">
<ejs-sparkline
id="sparkline"
:dataSource="dataSource"
:xName="xName"
:yName="yName"
:valueType="valueType"
:type="type"
:height='height'
></ejs-sparkline>
</div>
</template>
<script setup>
import {
SparklineComponent as EjsSparkline
} from '@syncfusion/ej2-vue-charts';
const dataSource = [
{ year: '2005', population: 20090440 },
{ year: '2006', population: 20264080 },
{ year: '2007', population: 20434180 },
{ year: '2008', population: 21007310 },
{ year: '2009', population: 21262640 },
{ year: '2010', population: 21515750 },
{ year: '2011', population: 21766710 },
{ year: '2012', population: 22015580 },
{ year: '2013', population: 22262500 },
{ year: '2014', population: 22507620 }
];
const type = 'Area';
const valueType = 'Category';
const xName = 'year';
const yName = 'population';
const height = '200px';
</script><template>
<div id="app">
<ejs-sparkline
id="sparkline"
:dataSource="dataSource"
:xName="xName"
:yName="yName"
:valueType="valueType"
:type="type"
:height='height'
></ejs-sparkline>
</div>
</template>
<script>
import {
SparklineComponent
} from '@syncfusion/ej2-vue-charts';
export default {
name: 'App',
components: {
'ejs-sparkline': SparklineComponent
},
data() {
return {
dataSource: [
{ year: '2005', population: 20090440 },
{ year: '2006', population: 20264080 },
{ year: '2007', population: 20434180 },
{ year: '2008', population: 21007310 },
{ year: '2009', population: 21262640 },
{ year: '2010', population: 21515750 },
{ year: '2011', population: 21766710 },
{ year: '2012', population: 22015580 },
{ year: '2013', population: 22262500 },
{ year: '2014', population: 22507620 }
],
type: 'Area',
valueType: 'Category',
xName: 'year',
yName: 'population',
height:'200px',
};
}
};
</script>Run the Project
Save src/App.vue, and then start the development server using either npm or yarn.
npm
npm run devyarn
yarn run devOpen the local URL displayed in the terminal, commonly http://localhost:5173, and verify that an area Sparkline displays population values from 2005 through 2014.

Sample: Explore the Vite-based Vue Sparkline getting-started sample.
For information about migrating an application from Vue 2 to Vue 3, see the Vue 3 Migration Guide.
Troubleshooting
-
The Sparkline is not rendered. Verify that the component import is aliased correctly in the Composition API or registered in
componentsin the Options API. -
No data is displayed. Verify that
dataSourcecontains records,xNameandyNamematch fields in every data object, and the field mapped byyNamecontains numeric values. -
Category values are not interpreted correctly. Set
valueTypetoCategorywhen the field mapped byxNamecontains category strings. -
The requested type is not displayed. Use one of the supported case-sensitive values:
Line,Column,WinLoss,Pie, orArea. -
An import or runtime error is displayed. Verify that
@syncfusion/ej2-vue-chartsis installed and that its version supports the project’s Vue and Node.js versions.
For additional assistance, refer to the Vue Sparkline API documentation.