vue3-apexcharts
vue3-apexcharts copied to clipboard
📊 Vue-3 component for ApexCharts
I was expecting the options to be reactive. In the code example below, the `startDate` and `endDate` are related to the annotation in the options, but when clicking the button...
Log-logs
I tried to use vue3-apexcharts to plot a log-log chart and to my surprise it doesn't work. using xaxis flags: xaxis: { type: 'numeric', logarithmic: true,}, which I figured would...
I do all my work in a cms, so it's not possible to use build tools. I have to include it vue3-apexcharts with a script element and use it from...
Hi, thanks for the great plugin first of all! I have used several charts so far, but the bar chart surprisingly is giving me a ton of headache. Managed to...
I've assigned a global state to series.data but is not changed when global state is changed. data() { return { series: [{ name: 'apicalls', data : apiCalls[this.$store.state.currentDay] }], chartOptions: {...
Please consider following steps to reproduce the apexchart rangeBar recursion bug using v3 vue.js! package.json stub: ` "dependencies": { "apexcharts": "^3.32.1", "core-js": "^3.6.5", "register-service-worker": "^1.7.1", "vue": "^3.0.0", "vue-router": "^4.0.0-0", "vue3-apexcharts":...
I've been trying to fire an event whenever someone clicks somewhere on the chart but I've been unable to do it with a vue3 project setup. My charts are showing...
Hi, I have a web application where I am using ApexCharts with Vue 3 to plot some graphics. I didn't have any trouble using the scatter plot, but when I...
I have this options. ```js const options = reactive({ chart: { id: 'vue-chart' }, xaxis: { type: 'datetime', min: new Date().getTime() - 60000, max: new Date().getTime() } }) ``` I'm...
https://apexcharts.com/vue-chart-demos/box-whisker-charts/boxplot-scatter/ Hi, Referring to your example above, it seems that maximum value appeared twice when there's mutliple series in boxplot chart. 