Skip to content

Latest commit

 

History

History
75 lines (59 loc) · 2.15 KB

README.md

File metadata and controls

75 lines (59 loc) · 2.15 KB

Simple Highcharts widget for Yii2

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.