2017 © Pedro Peláez
 

library laravel-highcharts

This is a package for generating a Highchart JSON config.

image

efficioconsulting/laravel-highcharts

This is a package for generating a Highchart JSON config.

  • Thursday, January 7, 2016
  • by rad-mira-labs
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 11 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

laravel-highcharts

This is a package for generating a Highchart JSON config., (*1)

Based in PHP Highcharts., (*2)

Installation

Run the following command and provide the latest stable version (e.g v1.0.0) :, (*3)

composer require efficioconsulting/laravel-highcharts

or add the following to your composer.json file :, (*4)

"efficioconsulting/laravel-highcharts": "1.0.0"

Then register this service provider with Laravel :, (*5)

'Aivo\Highchart\HighchartServiceProvider',

Usage

Create a chart:, (*6)

$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();

The Versions

07/01 2016

dev-master

9999999-dev

This is a package for generating a Highchart JSON config.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Mauro Moreno
by Rad Zajaczkowski

laravel highcharts

06/01 2016

1.0.0

1.0.0.0

This is a package for generating a Highchart JSON config.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Mauro Moreno

laravel highcharts

06/01 2016

dev-rad-mira-labs-patch-1

dev-rad-mira-labs-patch-1

This is a package for generating a Highchart JSON config.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Mauro Moreno

laravel highcharts