barthuttinga / phphighcharts
PHP wrapper for creating HighCharts in an object oriented way.
dev-master
2017-01-17 10:05 UTC
Requires
- php: >=5.6
Requires (Dev)
- czproject/phpdepend: ^1.0
- phpdocumentor/phpdocumentor: ^2.9
- phploc/phploc: ^3.0
- phpmd/phpmd: ^2.5
- phpunit/phpunit: ^5.7
- sebastian/phpcpd: ^2.0
- squizlabs/php_codesniffer: ^2.7
This package is not auto-updated.
Last update: 2025-03-29 22:28:06 UTC
README
PHP wrapper for creating HighCharts in an object oriented way.
Authors
- Bart Huttinga
Requirements
- Composer for installing the library
- HighCharts for rendering the charts
Installation
Install the library using Composer:
composer require barthuttinga/phphighcharts
Usage
Create a chart:
$chart = new PhpHighCharts\HighChart();
$chart->getChart()->setType('bar');
$chart->getTitle()
->setX(10)
->setText('Fruit Consumption');
$chart->getXAxis()->setCategories(array('Apples', 'Bananas', 'Oranges'));
$chart->getYAxis()->getTitle()->setText('Fruit eaten');
$chart->getTitle()->setText('Fruit Consumption');
$chart->setSeries(array(
new PhpHighCharts\Series(array(1, 0, 4), 'Jane'),
new PhpHighCharts\Series(array(5, 7, 3), 'John'),
));
$chart->setColors(array('#444444'));
$chart->addColor('#555555');
$chart->getYAxis()->addPlotBand(
new PhpHighCharts\PlotBand(0, 1, 'green')
);
$chart->getYAxis()->addPlotLine(
new PhpHighCharts\PlotLine(3, 1, 'green')
);
$chart->getCredits()
->setText('PHPHighCharts')
->setHref('https://github.com/barthuttinga/phphighcharts')
->getPosition()->setX(-100);
Then render it:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container"></div>
<script>
$(function () {
$('#container').highcharts(<?php echo $chart ?>);
});
</script>
Reporting an issue or a feature request
Issues and feature requests are tracked in the GitHub issue tracker.