DonutGraph
The code below is the source for this graph.
<?php
// DonutGraph
require_once 'SVGGraph/autoloader.php';
$settings = [
'auto_fit' => true,
'back_colour' => '#eee',
'back_stroke_width' => 0,
'back_stroke_colour' => '#eee',
'stroke_colour' => '#000',
'label_colour' => '#000',
'pad_right' => 20,
'pad_left' => 20,
'link_base' => '/',
'link_target' => '_top',
'sort' => false,
'show_labels' => true,
'show_label_amount' => true,
'label_font' => 'Arial',
'label_font_size' => '11',
'units_before_label' => '$',
'inner_text' => "Sugar-free!",
];
$width = 300;
$height = 200;
$type = 'DonutGraph';
$values = [
'Dough' => 30, 'Ray' => 50, 'Me' => 40, 'So' => 25, 'Far' => 45, 'Lard' => 35,
];
$colours = ['#ccf','#699','#93c','#996','#f39','#0f3','#339'];
$graph = new Goat1000\SVGGraph\SVGGraph($width, $height, $settings);
$graph->colours($colours);
$links = ['Dough' => 'jpegsaver.php', 'Ray' => 'crcdropper.php', 'Me' => 'svggraph.php'];
$graph->values($values);
$graph->links($links);
$graph->render($type);
Please note: the source code above comes from a script used to generate one of the example graphs on the site. This is simply a wrapper page to apply highlighting and make the source code easier to read, so there is no content here to describe what the source code is doing.