chuano/fpdf-circle-charts

Library that extends FPDF with circle percentage charts

1.0.1 2016-11-30 09:02 UTC

This package is auto-updated.

Last update: 2024-03-29 03:07:30 UTC


README

Library that extends FPDF with circle percentage charts

screenshot.jpg

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();