Getting Started with the Vue 3D Circular Chart Component in Vue 3
This article provides a step-by-step guide to setting up a Vite JavaScript project and integrating the Syncfusion® Vue 3D Circular Chart 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 folder:
cd my-appInstall the application dependencies using npm or yarn:
npm
npm installyarn
yarn installNote If you prefer TypeScript instead of JavaScript, create the application using npm create vite@latest 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 3D Circular Chart Component
Follow these steps to add the Vue 3D Circular Chart component using the Composition API or Options API.
Step 1: Import and Register the Component
Import the 3D Circular Chart component, its child directives, and the feature modules used by the example in src/App.vue.
The example uses the following modules:
-
PieSeries3Drenders the 3D pie series.
In the Composition API example, alias the component and directive imports to names that match the custom elements in the template. Components imported in <script setup> are available directly in the template.
<script setup>
import { provide } from 'vue';
import {
CircularChart3DComponent as EjsCircularchart3d,
CircularChart3DSeriesCollectionDirective as ECircularchart3dSeriesCollection,
CircularChart3DSeriesDirective as ECircularchart3dSeries,
PieSeries3D
} from '@syncfusion/ej2-vue-charts';
provide('circularchart3d', [
PieSeries3D
]);
</script><script>
import {
CircularChart3DComponent,
CircularChart3DSeriesCollectionDirective,
CircularChart3DSeriesDirective,
PieSeries3D
} from '@syncfusion/ej2-vue-charts';
export default {
name: 'App',
components: {
'ejs-circularchart3d': CircularChart3DComponent,
'e-circularchart3d-series-collection': CircularChart3DSeriesCollectionDirective,
'e-circularchart3d-series': CircularChart3DSeriesDirective
},
provide: {
circularchart3d: [
PieSeries3D
]
}
};
</script>Note: The module injection key must be
circularchart3d. Register only the modules required by the features used in the application.
Step 2: Declare the Data and Configuration
Define the series data and the chart configuration values in the script section.
<script setup>
const seriesData = [
{ browser: 'Chrome', share: 64.2 },
{ browser: 'Safari', share: 18.8 },
{ browser: 'Edge', share: 4.9 },
{ browser: 'Firefox', share: 3.1 },
{ browser: 'Opera', share: 2.4 },
{ browser: 'Others', share: 6.6 }
];
const title = 'Sample Browser Distribution';
const tilt = 30;
</script><script>
export default {
data() {
return {
seriesData: [
{ browser: 'Chrome', share: 64.2 },
{ browser: 'Safari', share: 18.8 },
{ browser: 'Edge', share: 4.9 },
{ browser: 'Firefox', share: 3.1 },
{ browser: 'Opera', share: 2.4 },
{ browser: 'Others', share: 6.6 }
],
title: 'Sample Browser Distribution',
tilt: 30
};
}
};
</script>Step 3: Define the 3D Circular Chart in the Template
Add the 3D Circular Chart and its series directives to the template section of src/App.vue.
The series uses the following properties:
-
dataSourcespecifies the array of data objects. -
xNamemaps the category field. -
yNamemaps the numeric value field. -
titlespecifies the chart title. -
tiltspecifies the vertical rotation of the 3D chart.
<template>
<div id="app">
<ejs-circularchart3d
id="container"
:title="title"
:tilt="tilt"
>
<e-circularchart3d-series-collection>
<e-circularchart3d-series
:dataSource="seriesData"
xName="browser"
yName="share"
></e-circularchart3d-series>
</e-circularchart3d-series-collection>
</ejs-circularchart3d>
</div>
</template>Each data object must contain the fields assigned to xName and yName. The field assigned to yName must contain a numeric value.
Here is the summarized code for the above steps in the src/App.vue file.
Replace the contents of src/App.vue with either the Composition API or Options API example.
<template>
<div id="app">
<ejs-circularchart3d
id="container"
:title="title"
:tilt="tilt"
>
<e-circularchart3d-series-collection>
<e-circularchart3d-series
:dataSource="seriesData"
xName="browser"
yName="share"
></e-circularchart3d-series>
</e-circularchart3d-series-collection>
</ejs-circularchart3d>
</div>
</template>
<script setup>
import { provide } from 'vue';
import {
CircularChart3DComponent as EjsCircularchart3d,
CircularChart3DSeriesCollectionDirective as ECircularchart3dSeriesCollection,
CircularChart3DSeriesDirective as ECircularchart3dSeries,
PieSeries3D
} from '@syncfusion/ej2-vue-charts';
const seriesData = [
{ browser: 'Chrome', share: 64.2 },
{ browser: 'Safari', share: 18.8 },
{ browser: 'Edge', share: 4.9 },
{ browser: 'Firefox', share: 3.1 },
{ browser: 'Opera', share: 2.4 },
{ browser: 'Others', share: 6.6 }
];
const title = 'Sample Browser Distribution';
const tilt = 30;
provide('circularchart3d', [
PieSeries3D
]);
</script><template>
<div id="app">
<ejs-circularchart3d
id="container"
:title="title"
:tilt="tilt"
>
<e-circularchart3d-series-collection>
<e-circularchart3d-series
:dataSource="seriesData"
xName="browser"
yName="share"
></e-circularchart3d-series>
</e-circularchart3d-series-collection>
</ejs-circularchart3d>
</div>
</template>
<script>
import {
CircularChart3DComponent,
CircularChart3DSeriesCollectionDirective,
CircularChart3DSeriesDirective,
PieSeries3D
} from '@syncfusion/ej2-vue-charts';
export default {
name: 'App',
components: {
'ejs-circularchart3d': CircularChart3DComponent,
'e-circularchart3d-series-collection': CircularChart3DSeriesCollectionDirective,
'e-circularchart3d-series': CircularChart3DSeriesDirective
},
provide: {
circularchart3d: [
PieSeries3D
]
},
data() {
return {
seriesData: [
{ browser: 'Chrome', share: 64.2 },
{ browser: 'Safari', share: 18.8 },
{ browser: 'Edge', share: 4.9 },
{ browser: 'Firefox', share: 3.1 },
{ browser: 'Opera', share: 2.4 },
{ browser: 'Others', share: 6.6 }
],
title: 'Sample Browser Distribution',
tilt: 30
};
}
};
</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 a 3D pie chart titled Sample Browser Distribution displays six categories.

Troubleshooting
-
The 3D Circular Chart is not rendered. Verify that the component and both child directives are imported. In the Options API, also verify that they are registered in
components. Check the browser console for component, module, data, or licensing errors. -
The pie series is not displayed. Import
PieSeries3Dand include it in the array provided with the exactcircularchart3dkey. -
No data is displayed. Verify that
dataSourcecontains records,xNameandyNamematch fields in every data object, and the field mapped byyNamecontains numeric values. - The Composition API template does not recognize the component. Verify that the imported component and directives use aliases matching the template element names.
-
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 3D Circular Chart API documentation.
See Also
- Vue 3D Circular Chart data labels
- Vue 3D Circular Chart legend
- Vue 3D Circular Chart examples
- Vue 3D Circular Chart getting-started sample
- Vue 3 Migration Guide
- Getting Started with Vue UI Components using the Composition API and TypeScript
- Getting Started with Vue UI Components using the Options API and TypeScript