Gathering detailed insights and metrics for vue3-apexcharts
Gathering detailed insights and metrics for vue3-apexcharts
Gathering detailed insights and metrics for vue3-apexcharts
Gathering detailed insights and metrics for vue3-apexcharts
npm install vue3-apexcharts
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
314 Stars
73 Commits
35 Forks
6 Watching
1 Branches
13 Contributors
Updated on 22 Nov 2024
Minified
Minified + Gzipped
JavaScript (85.05%)
TypeScript (8.59%)
HTML (6.35%)
Cumulative downloads
Total Downloads
Last day
6.7%
30,550
Compared to previous day
Last week
11.8%
155,313
Compared to previous week
Last month
10.7%
625,029
Compared to previous month
Last year
92.5%
5,232,907
Compared to previous year
2
Vue 3 component for ApexCharts to build interactive visualizations in vue.
1npm install --save apexcharts 2npm install --save vue3-apexcharts
If you're looking for Vue 2.x.x compatibile component, check-out vue-apexcharts
1import VueApexCharts from "vue3-apexcharts"; 2 3const app = createApp(App); 4app.use(VueApexCharts); 5// The app.use(VueApexCharts) will make <apexchart> component available everywhere.
OR
1// you can import in a particular component and register the component like below 2import VueApexCharts from "vue3-apexcharts"; 3export default { 4 components: { 5 apexchart: VueApexCharts, 6 }, 7};
To provide a $apexcharts
reference inside Vue instance
1import ApexCharts from "apexcharts"; 2 3app.config.globalProperties.$apexcharts = ApexCharts; 4 5// Add this when into a TypeScript codebase 6declare module "@vue/runtime-core" { 7 interface ComponentCustomProperties { 8 $apexcharts: typeof ApexCharts; 9 } 10}
To create a basic bar chart with minimal configuration, write as follows:
1<template> 2 <div> 3 <apexchart 4 width="500" 5 type="bar" 6 :options="chartOptions" 7 :series="series" 8 ></apexchart> 9 </div> 10</template>
1export default { 2 data: function () { 3 return { 4 chartOptions: { 5 chart: { 6 id: "vuechart-example", 7 }, 8 xaxis: { 9 categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998], 10 }, 11 }, 12 series: [ 13 { 14 name: "series-1", 15 data: [30, 40, 35, 50, 49, 60, 70, 91], 16 }, 17 ], 18 }; 19 }, 20};
This will render the following chart
Simple! Just change the series
or any option
and it will automatically re-render the chart.
Click on the below example to see this in action
1<template> 2 <div class="app"> 3 <apexchart 4 width="550" 5 type="bar" 6 :options="chartOptions" 7 :series="series" 8 ></apexchart> 9 <div> 10 <button @click="updateChart">Update!</button> 11 </div> 12 </div> 13</template>
1export default { 2 data: function () { 3 return { 4 chartOptions: { 5 chart: { 6 id: "vuechart-example", 7 }, 8 xaxis: { 9 categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998], 10 }, 11 }, 12 series: [ 13 { 14 name: "series-1", 15 data: [30, 40, 45, 50, 49, 60, 70, 81], 16 }, 17 ], 18 }; 19 }, 20 methods: { 21 updateChart() { 22 const max = 90; 23 const min = 20; 24 const newData = this.series[0].data.map(() => { 25 return Math.floor(Math.random() * (max - min + 1)) + min; 26 }); 27 28 const colors = ["#008FFB", "#00E396", "#FEB019", "#FF4560", "#775DD0"]; 29 30 // Make sure to update the whole options config and not just a single property to allow the Vue watch catch the change. 31 this.chartOptions = { 32 colors: [colors[Math.floor(Math.random() * colors.length)]], 33 }; 34 // In the same way, update the series option 35 this.series = [ 36 { 37 data: newData, 38 }, 39 ]; 40 }, 41 }, 42};
Important: While updating the options, make sure to update the outermost property even when you need to update the nested property.
✅ Do this
1this.chartOptions = { 2 ...this.chartOptions, 3 ...{ 4 xaxis: { 5 labels: { 6 style: { 7 colors: ["red"], 8 }, 9 }, 10 }, 11 }, 12};
❌ Not this
1this.chartOptions.xaxis = { 2 labels: { 3 style: { 4 colors: ['red'] 5 } 6 } 7}}
Prop | Type | Description |
---|---|---|
series* | Array | The series is an array which accepts an object in the following format. To know more about the format of dataSeries, checkout Series docs on the website. |
type* | String | line , area , bar , pie , donut , scatter , bubble , heatmap , radialBar , candlestick |
width | Number/String | Possible values for width can be 100% or 400px or 400 |
height | Number/String | Possible values for height can be 100% or 300px or 300 |
options | Object | The configuration object, see options on API (Reference) |
You don't actually need to call updateSeries() or updateOptions() manually. Changing the props will automatically update the chart. You only need to call these methods to update the chart forcefully.
Method | Description |
---|---|
updateSeries | Allows you to update the series array overriding the existing one |
updateOptions | Allows you to update the configuration object |
toggleSeries | Allows you to toggle the visibility of series programatically. Useful when you have custom legend. |
appendData | Allows you to append new data to the series array. |
addXaxisAnnotation | Draw x-axis annotations after chart is rendered. |
addYaxisAnnotation | Draw y-axis annotations after chart is rendered. |
addPointAnnotation | Draw point (xy) annotations after chart is rendered. |
Sometimes, you may want to call methods of the core ApexCharts library from some other place, and you can do so on window.ApexCharts
global variable directly. You need to target the chart by chart.id
while calling this method
Example
1window.ApexCharts.exec("vuechart-example", "updateSeries", [ 2 { 3 data: [40, 55, 65, 11, 23, 44, 54, 33], 4 }, 5]);
In the above method, vuechart-example
is the ID of chart, updateSeries
is the name of the method you want to call and the third parameter is the new Series you want to update.
More info on the .exec()
method can be found here
All other methods of ApexCharts can be called the same way.
Basic Examples are included to show how to get started using ApexCharts with Vue 3 easily.
To run the examples,
1cd demo 2yarn install 3yarn start
1yarn install
1yarn build
Vue3-ApexCharts is released under MIT license. You are free to use, modify and distribute this software, as long as the copyright header is left intact.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
10 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 8
Reason
Found 6/23 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
85 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More