Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.vue init webpack-simple quickstart
quickstart
install
npmjs.com
registry.
install @syncfusion/ej2-vue-charts --save
Vue.use()
.
{ ChartPlugin
}
from
'@syncfuion/ej2-vue-charts';
Vue
.use(ChartPlugin
);
<ejs-chart>
selector in <template>
section of the App.vue
file.
App.vue file
<template>
<ejs-chart></ejs-chart>
</template>
<script>
import Vue from 'vue';
import { ChartComponent, ChartPlugin } from '@syncfusion/ej2-vue-charts';
Vue.component(ChartPlugin.name, ChartComponent);
export default {
name: 'app',
data () {
return {
msg: 'Chart'
}
}
}
</script>
|