PHPackages                             mevisoft/consoletvs-charts - 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. mevisoft/consoletvs-charts

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

mevisoft/consoletvs-charts
==========================

Create charts for laravel using different charts libraries

1.0(6y ago)011MITHTMLPHP &gt;=7.0.0

Since Oct 13Pushed 6y ago1 watchersCompare

[ Source](https://github.com/mevisoft/ConsoleTVs-Charts-5x)[ Packagist](https://packagist.org/packages/mevisoft/consoletvs-charts)[ RSS](/packages/mevisoft-consoletvs-charts/feed)WikiDiscussions master Synced 1mo ago

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

[![](https://camo.githubusercontent.com/1fafbd612a9a3f750fc233e3b14c6145e9ed9c86e2d6718d97af0c46c379ddd2/687474703a2f2f692e696d6775722e636f6d2f7a796c564e68492e706e67)](https://erik.cat/projects/Charts)

[![StyleCI Status](https://camo.githubusercontent.com/2ec594c3b2e337116ac31a66b7a1f6c015cd785a5c6a8b40426e38b0231655d0/68747470733a2f2f7374796c6563692e696f2f7265706f732f36393132343137392f736869656c643f6272616e63683d6d6173746572267374796c653d666c6174)](https://styleci.io/repos/69124179)[![Build For Laravel](https://camo.githubusercontent.com/9d0e49e88cc565047271b33091f74c61bd665a5690747864fcff8e335eb285e9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c745f666f722d4c61726176656c2d6f72616e67652e737667)](https://styleci.io/repos/69124179)[![Total Downloads](https://camo.githubusercontent.com/744c5c8827c48e403fd6cb3f8db6da3248fa72fc0821663b9ffaf595d5209b71/68747470733a2f2f706f7365722e707567782e6f72672f636f6e736f6c657476732f6368617274732f642f746f74616c2e737667)](https://packagist.org/packages/consoletvs/charts)[![Latest Stable Version](https://camo.githubusercontent.com/7a5aa7c2cea7aeb9849b6408ce8096cf97807ffb8fb13efa2b8bc7decd88ef6a/68747470733a2f2f706f7365722e707567782e6f72672f636f6e736f6c657476732f6368617274732f762f737461626c652e737667)](https://packagist.org/packages/consoletvs/charts)[![License](https://camo.githubusercontent.com/e5b069c856911228dbf9a65c5673efd04f95fc42f153523a9619ec06c4982ce6/68747470733a2f2f706f7365722e707567782e6f72672f636f6e736f6c657476732f6368617274732f6c6963656e73652e737667)](https://packagist.org/packages/consoletvs/charts)

What is Charts?
---------------

[](#what-is-charts)

Charts is a multi-library chart package to create interactive charts using laravel. It Gives you access to tons of different charts. Over +100 different charts and +13 different chart libraries to choose from. With this package you can forget writing all the javascript manually and focus on your laravel project, while keeping an insane customizable chart coded in PHP. And last but not least, we support different types of charts, mathematical charts, multi-charts, they can even be created using your eloquent models! And hey... We do support realtime stuff as well ;)

Sample Chart
------------

[](#sample-chart)

This chart is a multi bar chart using the material library.

[![Charts Logo](https://camo.githubusercontent.com/2f0da4a89f1e08629ede7b26f543cc48e77bdf32ce714521233e6f4dc7948ce4/68747470733a2f2f692e6779617a6f2e636f6d2f32663530616330363066363939636333323337343134303331373463656336362e706e67)](https://camo.githubusercontent.com/2f0da4a89f1e08629ede7b26f543cc48e77bdf32ce714521233e6f4dc7948ce4/68747470733a2f2f692e6779617a6f2e636f6d2f32663530616330363066363939636333323337343134303331373463656336362e706e67)

```
$chart = Charts::multi('bar', 'material')
            // Setup the chart settings
            ->title("My Cool Chart")
            // A dimension of 0 means it will take 100% of the space
            ->dimensions(0, 400) // Width x Height
            // This defines a preset of colors already done:)
            ->template("material")
            // You could always set them manually
            // ->colors(['#2196F3', '#F44336', '#FFC107'])
            // Setup the diferent datasets (this is a multi chart)
            ->dataset('Element 1', [5,20,100])
            ->dataset('Element 2', [15,30,80])
            ->dataset('Element 3', [25,10,40])
            // Setup what the values mean
            ->labels(['One', 'Two', 'Three']);
```

Documentation
-------------

[](#documentation)

[![](https://camo.githubusercontent.com/903353ec8cab9bd6672ccec71218f3bd8ce73a0a4bb3891e161abbdd965285eb/687474703a2f2f692e696d6775722e636f6d2f3437576e4144642e706e67)](https://erik.cat/projects/Charts/docs)

License
-------

[](#license)

```
MIT License

Copyright (c) 2016 Erik Campobadal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

```

###  Health Score

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

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

Unknown

Total

1

Last Release

2400d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/78180dafee6a59dead5489c314b2856d2ad528959d1b62bcea2ad0b8f40ab334?d=identicon)[mevisoft](/maintainers/mevisoft)

### Embed Badge

![Health badge](/badges/mevisoft-consoletvs-charts/health.svg)

```
[![Health](https://phpackages.com/badges/mevisoft-consoletvs-charts/health.svg)](https://phpackages.com/packages/mevisoft-consoletvs-charts)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M682](/packages/barryvdh-laravel-ide-helper)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M210](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M857](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)[mrmarchone/laravel-auto-crud

Laravel Auto CRUD helps you streamline development and save time.

28711.8k2](/packages/mrmarchone-laravel-auto-crud)

PHPackages © 2026

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