PHPackages                             lonnyx/nova-apex-chart - 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. lonnyx/nova-apex-chart

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

lonnyx/nova-apex-chart
======================

A Laravel Nova Apex Chart Component.

v1.3.0(3y ago)61.3k↓16.7%MITVuePHP &gt;=8.0

Since Dec 9Pushed 1y agoCompare

[ Source](https://github.com/LonnyX/nova-apex-chart)[ Packagist](https://packagist.org/packages/lonnyx/nova-apex-chart)[ RSS](/packages/lonnyx-nova-apex-chart/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (12)Used By (0)

Nova Apex Chart
===============

[](#nova-apex-chart)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3411497b1d08a23004480117e3c12c155f193cffeee37435ba0999497332ad2f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c6f6e6e79782f6e6f76612d617065782d6368617274)](https://packagist.org/packages/lonnyx/nova-apex-chart)[![Total Downloads](https://camo.githubusercontent.com/0b78ed86499895280ddaafbe0b0803fbfdcef22ae65bb85e3312baf82a1f757f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c6f6e6e79782f6e6f76612d617065782d6368617274)](https://packagist.org/packages/lonnyx/nova-apex-chart)[![License](https://camo.githubusercontent.com/db3b7a8bca624b51ff11ab2c60652c9adeedc9063888ffcc42d88ae0e469122c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6c6f6e6e79782f6e6f76612d617065782d6368617274)](https://github.com/lonnyx/nova-apex-chart/blob/master/LICENSE)

A Laravel Nova ApexCharts Component

This package is a fork of `dcasia/nova-apex-chart`, compatible with Nova 4 and with date filter

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

[![LineCharts in Action](https://raw.githubusercontent.com/lonnyx/nova-apex-chart/master/screenshot1.png)](https://raw.githubusercontent.com/lonnyx/nova-apex-chart/master/screenshot1.png)[![LineCharts DateFilter](https://raw.githubusercontent.com/lonnyx/nova-apex-chart/master/screenshot2.png)](https://raw.githubusercontent.com/lonnyx/nova-apex-chart/master/screenshot2.png)

Installation
============

[](#installation)

You can install the package via composer:

```
composer require lonnyx/nova-apex-chart

```

Basic Usage
-----------

[](#basic-usage)

```
class ExampleNovaResource extends Resource
{

    public function cards(Request $request)
        {

            return [
                (new NovaApexChart())
                    ->type('bar')
                    ->series(
                        [
                            new DataOnlySeries([ 400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380 ])
                        ])
                    ->options([
                        'xaxis' => [
                            'categories' => [ 'Jan', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct' ]
                        ],
                        'tooltip' => [
                            'y' => [
                                'formatter' => new BasicFormatter('$', 'USD')
                            ]
                        ]
                    ])
            ];
        }

}
```

Create basic series by calling

```
use LonnyX\NovaApexChart\BasicSeries;
new BasicSeries('title', [ 400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380 ]);
```

Create data only series by calling

```
use LonnyX\NovaApexChart\DataOnlySeries;
new DataOnlySeries([ 400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380 ]);
```

Create custom formatter

```
use LonnyX\NovaApexChart\formatter\BasicFormatter;
new BasicFormatter('$', 'USD');
```

Show comma separated numbers

```
use LonnyX\NovaApexChart\formatter\BasicFormatter;
new BasicFormatter('', '', true);
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://raw.githubusercontent.com/lonnyx/nova-apex-chart/master/LICENSE) for more information.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity68

Established project with proven stability

 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 ~98 days

Recently: every ~8 days

Total

11

Last Release

1357d ago

Major Versions

v0.1.5 → v1.02022-07-18

PHP version history (2 changes)v0.1.0PHP &gt;=7.1.0

v1.0PHP &gt;=8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/7b38c44cc7c3dd37632055d121688343169e1c4de280e61fd953c9f2d76a52f2?d=identicon)[LonnyX](/maintainers/LonnyX)

---

Top Contributors

[![LonnyX](https://avatars.githubusercontent.com/u/10662320?v=4)](https://github.com/LonnyX "LonnyX (7 commits)")

---

Tags

laravelchartnovaapex chart

### Embed Badge

![Health badge](/badges/lonnyx-nova-apex-chart/health.svg)

```
[![Health](https://phpackages.com/badges/lonnyx-nova-apex-chart/health.svg)](https://phpackages.com/packages/lonnyx-nova-apex-chart)
```

###  Alternatives

[optimistdigital/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2872.1M6](/packages/optimistdigital-nova-sortable)[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2861.8M9](/packages/outl1ne-nova-sortable)[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[digital-creative/conditional-container

Provides an easy way to conditionally show and hide fields in your Nova resources.

116593.8k4](/packages/digital-creative-conditional-container)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)

PHPackages © 2026

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