Download the PHP package mauro-moreno/laravel-highcharts without Composer
On this page you can find all versions of the php package mauro-moreno/laravel-highcharts. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download mauro-moreno/laravel-highcharts
More information about mauro-moreno/laravel-highcharts
Files in mauro-moreno/laravel-highcharts
Download mauro-moreno/laravel-highcharts
More information about mauro-moreno/laravel-highcharts
Files in mauro-moreno/laravel-highcharts
Vendor mauro-moreno
Package laravel-highcharts
Short Description This is a package for generating a Highchart JSON config.
License MIT
Package laravel-highcharts
Short Description This is a package for generating a Highchart JSON config.
License MIT
Keywords highchartslaravel
Please rate this library. Is it a good library?
Informations about the package laravel-highcharts
laravel-highcharts
This is a package for generating a Highchart JSON config.
Based in PHP Highcharts.
Installation
Run the following command and provide the latest stable version (e.g v2.4.15) :
or add the following to your composer.json
file :
Then register this service provider with Laravel :
Usage
Create a chart:
$chart = App::make('highchart')
->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),
)
)
;
$chart->render();
All versions of laravel-highcharts with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.5
illuminate/support Version 4.*|5.*
zendframework/zend-json Version ~2.1.2
illuminate/support Version 4.*|5.*
zendframework/zend-json Version ~2.1.2
The package mauro-moreno/laravel-highcharts contains the following files
Loading the files please wait ....