tmilos / google-charts
PHP DataTable for Google charts
1.0.1
2017-12-12 06:05 UTC
Requires
- php: >=5.6
- tmilos/value: ^2.0
Requires (Dev)
- phpunit/phpunit: ^5.7|^6.0
This package is not auto-updated.
Last update: 2024-10-26 20:48:19 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}]}]}