dominus77/yii2-highcharts-widget

Renders a Highcharts widget for Yii2.

v1.0.0 2020-02-12 12:37 UTC

This package is auto-updated.

Last update: 2024-04-12 22:47:11 UTC


README

Latest Version Software License Build Status codecov Scrutinizer Code Quality

Highcharts widget for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require dominus77/yii2-highcharts-widget

or add

"dominus77/yii2-highcharts-widget": "^1.0"

to the require section of your composer.json file.

Usage

View:

<?php
use dominus77\highcharts\HighChartsWidget;
?>

<?= HighChartsWidget::widget([
    'clientOptions' => [       
        'chart' => [
            'type' => 'bar'
        ],
        'title' => [
            'text' => 'Fruit Consumption'
        ],
        'xAxis' => [
            'categories' => [
                'Apples',
                'Bananas',
                'Oranges'
            ]
        ],
        'yAxis' => [
            'title' => [
                'text' => 'Fruit eaten'
            ]
        ],
        'series' => [
            ['name' => 'Jane', 'data' => [1, 0, 4]],
            ['name' => 'John', 'data' => [5, 7, 3]]
        ]
    ]
]) ?>

More Information

Please, check the Highcharts Documentation

Testing

$ vendor/bin/phpunit

License

The MIT License (MIT). Please see License File for more information.