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

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

digital-creative/nova-apex-chart
================================

A Laravel Nova Apex Chart Component.

v0.1.5(5y ago)837.6k↓77.8%[1 issues](https://github.com/dcasia/nova-apex-chart/issues)MITPHPPHP &gt;=7.1.0

Since Dec 9Pushed 1y ago5 watchersCompare

[ Source](https://github.com/dcasia/nova-apex-chart)[ Packagist](https://packagist.org/packages/digital-creative/nova-apex-chart)[ RSS](/packages/digital-creative-nova-apex-chart/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (6)DependenciesVersions (7)Used By (0)

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

[](#nova-apex-chart)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b938f729a7dc9844a3f638c380efff5c752c815710f0e0a02618eae7a93f80e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6469676974616c2d63726561746976652f6e6f76612d617065782d6368617274)](https://packagist.org/packages/digital-creative/nova-apex-chart)[![Total Downloads](https://camo.githubusercontent.com/bfc52f4f9193105cc7a97a6ed3da4e56ba56b3b007e0a6f55ea59082b4060c27/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6469676974616c2d63726561746976652f6e6f76612d617065782d6368617274)](https://packagist.org/packages/digital-creative/nova-apex-chart)[![License](https://camo.githubusercontent.com/26bf2aaf99dc6be7bb38b17ee20836e38e80a3fb56865d10c6cbb0d1b9cbc732/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6469676974616c2d63726561746976652f6e6f76612d617065782d6368617274)](https://github.com/dcasia/nova-apex-chart/blob/master/LICENSE)

A Laravel Nova ApexCharts Component

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

[![SliderFilter in Action](https://raw.githubusercontent.com/dcasia/nova-apex-chart/master/screenshot.png)](https://raw.githubusercontent.com/dcasia/nova-apex-chart/master/screenshot.png)

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

[](#installation)

You can install the package via composer:

```
composer require digital-creative/nova-apex-chart

```

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

[](#basic-usage)

```
use DigitalCreative\NovaApexChart\NovaApexChart;
use DigitalCreative\NovaApexChart\Formatter\BasicFormatter;
use DigitalCreative\NovaApexChart\Series\DataOnlySeries;

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 DigitalCreative\NovaApexChart\Series\BasicSeries;
new BasicSeries('title', [ 400, 430, 448, 470, 540, 580, 690, 1100, 1200, 1380 ]);
```

Create data only series by calling

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

Create custom formatter

```
use DigitalCreative\NovaApexChart\Formatter\BasicFormatter;
new BasicFormatter('$', 'USD');
```

Show comma separated numbers

```
use DigitalCreative\NovaApexChart\Formatter\BasicFormatter;
new BasicFormatter('', '', true);
```

License
-------

[](#license)

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

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance24

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75% 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 ~45 days

Recently: every ~56 days

Total

6

Last Release

2161d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e4a85b779289ce63c67af70941a545331f3e362a4b58330495cc7e77250e5401?d=identicon)[milewski](/maintainers/milewski)

---

Top Contributors

[![max-yilang](https://avatars.githubusercontent.com/u/16163450?v=4)](https://github.com/max-yilang "max-yilang (6 commits)")[![m-a-x-s-e-e-l-i-g](https://avatars.githubusercontent.com/u/7907436?v=4)](https://github.com/m-a-x-s-e-e-l-i-g "m-a-x-s-e-e-l-i-g (1 commits)")[![miki131](https://avatars.githubusercontent.com/u/3870117?v=4)](https://github.com/miki131 "miki131 (1 commits)")

---

Tags

cardchartlaravelnovalaravelchartnovaapex chart

### Embed Badge

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

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

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3423.6M8](/packages/optimistdigital-nova-multiselect-field)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51177.6k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17178.1k1](/packages/murdercode-nova4-tinymce-editor)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11258.1k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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