PHP code example of mikuspetr / charts-php

1. Go to this page and download the library: Download mikuspetr/charts-php 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/ */

    

mikuspetr / charts-php example snippets


use ChartsPhp\ChartsPhp;

$chartType = 'bar';

// The arrays structure copies data object structure in Chart.js
$labels = ['January', 'February', 'March', 'April', 'May', 'June',];
$datasets = [
    [
        'label' => 'apples',
        'data' => [10, 12, 8, 25, 32, 20]
    ],
    [
        'label' => 'bananas',
        'data' => [11, 4, 15, 17, 10, 23]
    ]
];
$options = ['aspectRatio' => 3];


// use constructor to create new chart
$barChart = ChartsPhp::createChart($chartType, $labels, $datasets, $options);

// render HTML canvas
echo $barChart->renderHtml();

// render JavaScript that draw chart in canvas (

composer