PHPackages                             dragonofmercy/laravel-apexcharts - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. dragonofmercy/laravel-apexcharts

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

dragonofmercy/laravel-apexcharts
================================

ApexCharts builder for Laravel

1.1(3mo ago)028MITPHP

Since Dec 4Pushed 3mo agoCompare

[ Source](https://github.com/dragonofmercy/laravel-apexcharts)[ Packagist](https://packagist.org/packages/dragonofmercy/laravel-apexcharts)[ Docs](https://github.com/dragonofmercy/laravel-apexcharts)[ RSS](/packages/dragonofmercy-laravel-apexcharts/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

laravel-apexcharts
==================

[](#laravel-apexcharts)

[![](https://camo.githubusercontent.com/3387c413fb866ac1c664966e684df85f2d61c6d6fd91d5d51df3c64ceafb0375/68747470733a2f2f696d672e736869656c64732e696f2f7374617469632f76313f6c6162656c3d6c61726176656c266d6573736167653d25453225383925413531322e3026636f6c6f723d303037384245266c6f676f3d6c61726176656c267374796c653d666c6174)](https://packagist.org/packages/dragonofmercy/laravel-apexcharts)[![](https://camo.githubusercontent.com/07d33599c3e3f1d55a1062dba9389243808219b17d75b6a0fb62c9abcae8b14a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f647261676f6e6f666d657263792f6c61726176656c2d61706578636861727473)](https://packagist.org/packages/dragonofmercy/laravel-apexcharts)[![](https://camo.githubusercontent.com/c30e21e18bc2d0d3f32802aaad5f27d9a1d60111bf4f37dd813389d3a629b55d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f647261676f6e6f666d657263792f6c61726176656c2d61706578636861727473)](https://packagist.org/packages/dragonofmercy/laravel-apexcharts)[![](https://camo.githubusercontent.com/c5ce3c468108adae19714ec1862ebb38721c99cc4b85d3071bf64ca0b6aff8a5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f647261676f6e6f666d657263792f6c61726176656c2d61706578636861727473)](https://github.com/dragonofmercy/laravel-apexcharts/blob/main/LICENSE)

A powerful and flexible ApexCharts wrapper package for Laravel 12, providing an elegant PHP API to build beautiful, interactive charts in your Laravel applications.

Features
--------

[](#features)

- 🎨 Full ApexCharts API support with fluent PHP interface
- 📊 Support for all chart types (Line, Bar, Area, Pie, Donut, Radar, and more)
- 🌍 Built-in internationalization with 50+ locales
- 🎯 Type-safe enums for chart options
- 🔧 Highly configurable with sensible defaults
- 💪 PHP 8.2+ with modern type declarations
- 🚀 Easy integration with Blade templates

Requirements
------------

[](#requirements)

- PHP 8.2 or higher
- Laravel 12.0 or higher

Getting Started
---------------

[](#getting-started)

### 1. Install the package

[](#1-install-the-package)

```
composer require dragonofmercy/laravel-apexcharts
```

### 2. Publish assets

[](#2-publish-assets)

```
php artisan vendor:publish --tag=apexcharts
```

### 3. Configure

[](#3-configure)

You can change the chart settings of your app from `config/apexcharts.php` file

Usage example
-------------

[](#usage-example)

```
use ApexCharts\Builder;
use ApexCharts\Options\Chart;
use ApexCharts\Options\Serie;
use ApexCharts\Enums\ChartType;

$chart = (new Builder())
    ->chart(Chart::make()->type(ChartType::Line)->height(350))
    ->labels(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']);
    ->serie(Serie::make()->name('Sales')->data([30, 40, 35, 50, 49, 60]))
    ->toJson();

echo $chart->renderChart();
```

This package don't auto-include the ApexCharts library you have to do it manually.
You can include it directly in your layout file or use a CDN.

```

```

or via npm

```
npm install apexcharts
```

```
import ApexCharts from 'apexcharts';
window.ApexCharts = ApexCharts;
```

Implementation Status
---------------------

[](#implementation-status)

✅ annotations
✅ chart
✅ colors
✅ dataLabels
✅ fill
✅ forecastDataPoints
✅ grid
✅ labels
✅ legend
✅ markers
✅ noData
✅ plotOptions
✅ responsive
✅ series
✅ states
✅ stroke
✅ theme
✅ title
✅ subtitle
✅ tooltip
✅ xaxis
✅ yaxis

### Additional Features

[](#additional-features)

✅ Chart auto brush

License
-------

[](#license)

This package is open-sourced software licensed under the [MIT license](LICENSE).

Support
-------

[](#support)

If this project helps to increase your productivity, you can give me a cup of coffee :)

[![Donate](https://camo.githubusercontent.com/2df914a0101385fd5196ed05218772a0e5f8211fd309ee00367069b730a06b7d/68747470733a2f2f63646e2e6b6f2d66692e636f6d2f63646e2f6b6f6669322e706e673f763d33)](https://ko-fi.com/dragonofmercy)

Credits
-------

[](#credits)

- Built on top of [ApexCharts.js](https://apexcharts.com/)
- Maintained by [DragonOfMercy](https://github.com/dragonofmercy)

Links
-----

[](#links)

- [ApexCharts Documentation](https://apexcharts.com/docs/)

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance82

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~110 days

Total

2

Last Release

94d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/196e1196b041461d3992389e5b7d2d6aa2d06fc7c3acaab9a2007b642d08fa2d?d=identicon)[dragonofmercy](/maintainers/dragonofmercy)

---

Top Contributors

[![dragonofmercy](https://avatars.githubusercontent.com/u/140013?v=4)](https://github.com/dragonofmercy "dragonofmercy (56 commits)")

---

Tags

laravellaravel-package

### Embed Badge

![Health badge](/badges/dragonofmercy-laravel-apexcharts/health.svg)

```
[![Health](https://phpackages.com/badges/dragonofmercy-laravel-apexcharts/health.svg)](https://phpackages.com/packages/dragonofmercy-laravel-apexcharts)
```

###  Alternatives

[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17818.7k](/packages/markwalet-nova-modal-response)[crumbls/layup

A visual page builder plugin for Filament 5 — Divi-style grid layouts with extensible widgets.

591.7k1](/packages/crumbls-layup)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.2k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
