Created
November 26, 2017 06:36
-
-
Save kuredev/bdb7423a91bf77b919746e3bc3aea153 to your computer and use it in GitHub Desktop.
pChartでグラフを作成する小さなメモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once "vendor/autoload.php"; | |
| $myData = new CpChart\Data(); | |
| $myData->addPoints(array(VOID,3,4,3,5)); | |
| $myPicture = new CpChart\Image(700,230,$myData); | |
| $myPicture->setGraphArea(60,40,670,190); | |
| $myPicture->drawScale(); | |
| $myPicture->drawSplineChart(); | |
| $myPicture->Render("basic.png"); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
インストール手順メモ
前提(PHP 7)