tmilos/google-charts
最新稳定版本:1.0.1
Composer 安装命令:
composer require tmilos/google-charts
包简介
PHP DataTable for Google charts
关键字:
README 文档
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}]}]}
统计信息
- 总下载量: 823
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-22