PHPackages                             misd/highcharts - 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. misd/highcharts

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

misd/highcharts
===============

Allows the programmatic creation of Highcharts

61984[1 PRs](https://github.com/misd-service-development/php-highcharts/pulls)PHP

Since Apr 15Pushed 13y ago2 watchersCompare

[ Source](https://github.com/misd-service-development/php-highcharts)[ Packagist](https://packagist.org/packages/misd/highcharts)[ RSS](/packages/misd-highcharts/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

PHP Highcharts
==============

[](#php-highcharts)

[![Build Status](https://camo.githubusercontent.com/ae1b85f40ce40a29821df6155fdf0581b703b6dbfbdc316b2eb6b2860822ac7b/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f6d6973642d736572766963652d646576656c6f706d656e742f7068702d686967686368617274732e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/misd-service-development/php-highcharts)

*This library is currently under development.*

Allows the programmatic creation of [Highcharts](http://www.highcharts.com/) in PHP.

Authors
-------

[](#authors)

- Chris Wilkinson

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

[](#requirements)

- [Highcharts](http://www.highcharts.com/)

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

[](#installation)

1. Add the bundle to your dependencies:

    ```
    // composer.json

    {
       // ...
       "require": {
           // ...
           "misd/highcharts": "dev-master"
       }
    }

    ```
2. Use Composer to download and install the bundle:

    ```
    $ php composer.phar update misd/highcharts

    ```

Usage
-----

[](#usage)

Create a chart:

```
$chart = Chart::factory()
    ->setTitle('Scatter plot with regression line')
    ->addSeries(
        array(
            ScatterSeries::factory()
                ->setName('Observations')
                ->addData(array(1, 1.5, 2.8, 3.5, 3.9, 4.2)),
            LineSeries::factory()
                ->setName('Regression line')
                ->addDataPoint(DataPoint::factory(0, 1.11))
                ->addDataPoint(DataPoint::factory(5, 4.51))
                ->getMarker()->setEnabled(false)->getSeries()
                ->setEnableMouseTracking(false),
        )
    )
;

```

Then render it:

```

    $(function () {

    });

```

Reporting an issue or a feature request
---------------------------------------

[](#reporting-an-issue-or-a-feature-request)

Issues and feature requests are tracked in the [GitHub issue tracker](https://github.com/misd-service-development/php-highcharts/issues).

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/6e6aaeba393e9038b5a5a916e5f4e32ffb349436e3be2027be4828f486bc8c9d?d=identicon)[thewilkybarkid](/maintainers/thewilkybarkid)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/misd-highcharts/health.svg)

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

PHPackages © 2026

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