tmilos/google-charts

PHP DataTable for Google charts

1.0.1 2017-12-12 06:05 UTC

This package is not auto-updated.

Last update: 2024-04-13 18:02:47 UTC


README

PHP DataTable for Google charts.

<?php
$dataTable = new DataTable([
    Column::create(ColumnType::STRING())->setLabel('Month'),
    Column::create(ColumnType::NUMBER())->setLabel('Active Members'),
]);
$dataTable->addRows([
    ['July', 123],
    ['Aug', 221],
    ['Sep', 97],
]);

print json_encode($dataTable); // {"cols":[{"type":"string","label":"Month"},{"type":"number","label":"Active Members"}],"rows":[{"c":[{"v":"July"},{"v":123}]},{"c":[{"v":"Aug"},{"v":221}]},{"c":[{"v":"Sep"},{"v":97}]}]}