1. Go to this page and download the library: Download aldaflux/chartjs-bundle 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/ */
aldaflux / chartjs-bundle example snippets
new Aldaflux\ChartjsBundle\ChartjsBundle(),
$graphicChart = new ChartBuiderData();
$graphicChart->setType(TypeCharjs::CHARJS_BAR);
$graphicChart->setLabels(array('Barcelona','New York','Londres','Paris','Berlin','Tokio','El Cairo'));
$graphicChart->setData(
array(
'Profit' => array(23,45,65,12,34,45,88),
'Cost' => array(13,34,54,11,34,35,48),
)
);
$graphicChart->setBackgroundcolor(
array(
TypeColors::aqua,
TypeColors::dark_green
)
);
$graphicChart->setBordercolor(
array(
TypeColors::aqua,
TypeColors::dark_green
)
);
$graphicChart->getHeight('150px');
$graphicChart->getWidth('500px');
$grafica->setOptions("
animation: {
duration: 0, // general animation time
},
hover: {
animationDuration: 0, // duration of animations when hovering an item
},
responsiveAnimationDuration: 0, // animation duration after a resize"
);
$grafica->setDatasetConfig('
pointStyle: \'star\',
');