chuano / fpdf-circle-charts
Library that extends FPDF with circle percentage charts
1.0.1
2016-11-30 09:02 UTC
Requires
- php: >=5.3.3
- setasign/fpdf: ^1.8
This package is auto-updated.
Last update: 2025-01-29 04:49:14 UTC
README
Library that extends FPDF with circle percentage charts
Installation
$ composer require chuano/fpdf-circle-charts ~1.0
Usage
$pdf = new FPDFCircleCharts(); $pdf->AddPage(); // Chart width and height $width = 190; // Padding inside chart box $padding = 10; // Percentage completed $percentage = 75; // Draw the chart $pdf->CircleChart($width, $padding, $percentage); // Output $pdf->Output();