There are few options on how to include/import ApexCharts into your project:
Install the ApexCharts icon library from command prompt from the root directory of the project:
npm install apexcharts --save
How to import ApexCharts package?
import ApexCharts from 'apexcharts';
Import the helper function to manage the charts colors based on mode changes. It will take updated values from the root variables.
import { getColorCodes } from "../helpers/helper.js";
Below the example how to use the package and make it working ApexCharts on any page.
HTML
import ApexCharts from 'apexcharts'; import { getColorCodes } from "../helpers/helper.js"; document.addEventListener("alpine:init", () => { Alpine.data("basicColumnApp", () => ({ series: [{ name: 'Net Profit', data: [44, 55, 57, 56, 61, 58, 63, 60, 66] }, { name: 'Revenue', data: [76, 85, 101, 98, 87, 105, 91, 114, 94] }, { name: 'Free Cash Flow', data: [35, 41, 36, 26, 45, 48, 52, 53, 41] }], init() { // Initial chart render this.renderChart(); // Reload chart on window resize window.addEventListener('resize', this.reloadChart.bind(this)); }, renderChart() { // Destroy previous instance if exists if (this.basicColumnChart) this.basicColumnChart.destroy(); // Initialize new chart this.basicColumnChart = new ApexCharts(this.$refs.basicColumnChart, this.options); this.basicColumnChart.render(); }, reloadChart() { // Handle the logic for resizing this.renderChart(); // Re-render chart on resize }, get options() { return { series: this.series, chart: { height: 300, type: "bar", }, plotOptions: { bar: { horizontal: false, columnWidth: '55%', endingShape: 'rounded' }, }, dataLabels: { enabled: false }, stroke: { show: true, width: 2, colors: ['transparent'] }, colors: getColorCodes(this.$refs.basicColumnChart.dataset), xaxis: { categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct'], }, yaxis: { title: { text: '$ (thousands)' } }, fill: { opacity: 1 }, tooltip: { y: { formatter: function (val) { return "$ " + val + " thousands" } } } }; } })); });
Be the first to know about new updates and exclusive discounts. No spam, just great offers!
How about
With over 7 years of experienced team, we specialize in delivering custom projects for startups, blue-chip companies, and government agencies. We have successfully completed over 250+ projects, providing tailored solutions that meet the unique needs of each client.
Hire Us© Domiex Created & Crafted by SRBThemes.