PHP code example of ipmedia / google-chart-wrapper

1. Go to this page and download the library: Download ipmedia/google-chart-wrapper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ipmedia / google-chart-wrapper example snippets



use \IpMedia\GoogleChartWrapper;

// instantiate wrapper
$wrapper = new GoogleChartWrapper;

// set the data to be rendered
$wrapper->setData([ 5, 2, 3 ]);

// render the link to the google api generator
$wrapper->getSrc();  // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3

// change the type of the chart
$wrapper->setType(GoogleChartWrapper::PIE)->getSrc();  // http://chart.apis.google.com/chart?cht=p&chs=450x200&chd=t:5,2,3

// set the size of the chart
$wrapper->setSize(200, 200)->$this->getSrc();  // http://chart.apis.google.com/chart?cht=p3&chs=200x200&chd=t:5,2,3

// set the base color
$wrapper->setBaseColor('00ffff')->getSrc(); // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3&chco=00ffff
// rgb supported
$wrapper->setBaseColor([ 0, 255, 255 ])->getSrc(); // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3&chco=00ffff

// set the base color
$wrapper->setGradientColor([ 0, 0, 0 ], [ 255, 255, 255 ])->getSrc(); // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3&chco=000000,ffffff

// or set a color for each segment
$this->setColors([ [ 255, 0, 0 ], [ 0, 255, 0 ], [ 0, 0, 255 ] ])->getSrc(); // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3&chco=ff0000|00ff00|0000ff

// add labels
$wrapper->setLabels([ 'Five', 'Two', 'Four' ])->getSrc();  // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3&chl=Five|Two|Four

// and finally you can set the labels of the chart 
$wrapper->setTitle('Chart Title')->getSrc();  // http://chart.apis.google.com/chart?cht=p3&chs=450x200&chd=t:5,2,3&chtt=Chart+Title