phperf/highcharts

HighCharts bindings

v0.0.1 2017-11-23 09:42 UTC

This package is auto-updated.

Last update: 2024-04-18 00:42:13 UTC


README

HighCharts bindings

Build Status Scrutinizer Code Quality Code Climate

Installation

composer require phperf/highcharts

Usage

$hc = new HighCharts();
$hc->addOption('legend', 'enabled', false);
$hc->setTitle($name);
$hc->addOption('plotOptions', 'series', 'point', 'mouseOver', <<<JS
function(){console.log(this.x, this.y)}
JS

$hc->addRow(1, 1);
$hc->addRow(2, 2);
$hc->addRow(3, 3);

$hc->render();