AG Charts is a fully-featured and highly customizable canvas-based Vue3 Charting library. It delivers outstanding performance and has no third-party dependencies.
<template><!-- The AG Charts component with chartsOptions as an attribute --><ag-charts:options="options"></ag-charts></template><script>setup() {
// Chart Optionsconst options = ref({
// Data: Data to be displayed in the chartdata: [
{ month: 'Jan', avgTemp: 2.3, iceCreamSales: 162000 },
{ month: 'Mar', avgTemp: 6.3, iceCreamSales: 302000 },
{ month: 'May', avgTemp: 16.2, iceCreamSales: 800000 },
{ month: 'Jul', avgTemp: 22.8, iceCreamSales: 1254000 },
{ month: 'Sep', avgTemp: 14.5, iceCreamSales: 950000 },
{ month: 'Nov', avgTemp: 8.9, iceCreamSales: 200000 },
],
// Series: Defines which chart type and data to useseries: [{ type: 'bar', xKey: 'month', yKey: 'iceCreamSales' }],
});
return {
options,
};
},
</script>
Vue Chart Component
<template><!-- The AG Charts component with chartsOptions as an attribute --><ag-charts:options="options"></ag-charts></template>
ℹ️ Note:
For more information on building Vue3 Charts with AG Charts, refer to our Documentation.
🤝 Support
Enterprise Support
AG Charts Enterprise customers have access to dedicated support via ZenDesk, which is monitored by our support & engineering teams.
Bug Reports
If you have found a bug, please report it in this repository's issues section.
Questions
Look for similar problems on StackOverflow using the ag-charts tag. If nothing seems related, post a new message there. Please do not use GitHub issues to ask questions.
Contributing
AG Charts is developed by a team of co-located developers in London. If you want to join the team send your application to info@ag-grid.com.
⚠️ License
ag-charts-community is licensed under the MIT license.
AG Grid is our flagship product, a fully-featured and highly customizable Vue3 Data Grid. It delivers outstanding performance, has no third-party dependencies and comes with support for React, Angular and Vue.
The npm package ag-charts-vue3 receives a total of 1,985 weekly downloads. As such, ag-charts-vue3 popularity was classified as popular.
We found that ag-charts-vue3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 0 open source maintainers collaborating on the project.
Package last updated on 13 Nov 2024
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.