PHPackages                             jxlwqq/echarts - 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. jxlwqq/echarts

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

jxlwqq/echarts
==============

echarts for laravel-admin

v1.0.2(6y ago)916.6k3MITPHPPHP &gt;=7.0.0

Since Jun 27Pushed 6y ago1 watchersCompare

[ Source](https://github.com/jxlwqq/echarts)[ Packagist](https://packagist.org/packages/jxlwqq/echarts)[ Docs](https://github.com/jxlwqq/echarts)[ RSS](/packages/jxlwqq-echarts/feed)WikiDiscussions master Synced 1mo ago

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

Use Echarts in laravel-admin
============================

[](#use-echarts-in-laravel-admin)

Installation
------------

[](#installation)

```
composer require jxlwqq/echarts

php artisan vendor:publish --tag=laravel-admin-echarts
```

Configuration
-------------

[](#configuration)

Open `config/admin.php`, add configurations that belong to this extension at `extensions` section.

```
    'extensions' => [
        'echarts' => [
            // Set to `false` if you want to disable this extension
            'enable' => true,
        ]
    ]
```

Usage
-----

[](#usage)

Create a view in views directory like `resources/views/admin/echarts.blade.php`, and add following codes:

```

    $(function () {
        // based on prepared DOM, initialize echarts instance
        var myChart = echarts.init(document.getElementById('main'));

        // specify chart configuration item and data
        var option = {
            title: {
                text: 'ECharts entry example'
            },
            tooltip: {},
            legend: {
                data: ['Sales']
            },
            xAxis: {
                data: ["shirt", "cardign", "chiffon shirt", "pants", "heels", "socks"]
            },
            yAxis: {},
            series: [{
                name: 'Sales',
                type: 'bar',
                data: [5, 20, 36, 10, 10, 20]
            }]
        };

        // use configuration item and data specified to show chart
        myChart.setOption(option);
    });

```

Then show it on the page

```
class EchartsController extends Controller
{
    public function index(Content $content)
    {
        return $content
            ->header('Echarts')
            ->body(new Box('echarts demo', view('admin.echarts')));
    }
}
```

For more usage, please refer to the official [website](https://echarts.apache.org/en/index.html) of echarts.

License
-------

[](#license)

Licensed under [The MIT License (MIT)](LICENSE).

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

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

Total

3

Last Release

2517d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/84278d67776d72a3f5c3393df1841a3e49d8a90d8d69871a61c0a57265958f66?d=identicon)[jxlwqq](/maintainers/jxlwqq)

---

Top Contributors

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

---

Tags

extensionlaravel-admin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jxlwqq-echarts/health.svg)

```
[![Health](https://phpackages.com/badges/jxlwqq-echarts/health.svg)](https://phpackages.com/packages/jxlwqq-echarts)
```

###  Alternatives

[laravel-admin-ext/chartjs

Use Chartjs in laravel-admin

102180.6k1](/packages/laravel-admin-ext-chartjs)[laravel-admin-ext/china-distpicker

Distpicker extension for laravel-admin

13443.9k](/packages/laravel-admin-ext-china-distpicker)[laravel-admin-ext/grid-sortable

Sort the grid data by drag and drop rows

42119.3k](/packages/laravel-admin-ext-grid-sortable)[jxlwqq/json-editor

JSON Editor for Laravel-admin

32101.8k](/packages/jxlwqq-json-editor)[jxlwqq/env-manager

Env Manager for Laravel-admin

3719.9k](/packages/jxlwqq-env-manager)[jxlwqq/quill

quill editor for laravel-admin

2427.1k](/packages/jxlwqq-quill)

PHPackages © 2026

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