Git Product home page Git Product logo

gchart's Introduction

gchart

GChart is a very simple library that allows you to easily create arrays that are compatible with the Google Charts library. I use it together with Laravel and I am too much of a noob to explain you how to use it otherwise.

Installation

Put this in composer.json

require: "grumpydictator/gchart": "dev-master"

Update the providers-array in app/config/app.php with this:

'Grumpydictator\Gchart\GchartServiceProvider',

Examples

This returns the data used to create the example chart at Google's line chart example:

$chart = App::make('gchart');
$chart->addColumn('Year', 'string');
$chart->addColumn('Sales', 'number');
$chart->addColumn('Expenses', 'number');

// add data:
$chart->addRow('2004', 1000, 400);
$chart->addRow('2005', 1170, 460);
$chart->addRow('2006', 660, 1120);
$chart->addRow('2007', 1030, 540);

$chart->generate();

echo json_encode($chart->getData());

This is roughly the same chart, but it uses date objects for the date:

$chart = App::make('gchart');
$chart->addColumn('Day', 'date');
$chart->addColumn('Pizza slices I ate', 'number');
$chart->addColumn('Beers I drank', 'number');

// add data:
$chart->addRow(new Carbon('2014-05-01'), 3, 1);
$chart->addRow(new Carbon('2014-05-02'), 4, 2);
$chart->addRow(new Carbon('2014-05-03'), 3, 2);
$chart->addRow(new Carbon('2014-05-04'), 6, 3);
$chart->addRow(new Carbon('2014-05-05'), 5, 0);
$chart->addRow(new Carbon('2014-05-06'), 4, 1);

$chart->generate();

echo json_encode($chart->getData());

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.