Offset image
The code below is the source for this graph.
<?php
// Offset image
require_once 'SVGGraph/autoloader.php';
$settings = [
'auto_fit' => true,
'back_colour' => '#eee',
'back_stroke_width' => 0,
'stroke_colour' => '#000',
'axis_colour' => '#333',
'axis_overlap' => 2,
'axis_font' => 'Arial',
'axis_font_size' => 10,
'link_base' => '/',
'link_target' => '_top',
'minimum_grid_spacing' => 20,
'show_subdivisions' => true,
'show_grid_subdivisions' => true,
'pad_right' => 15,
'pad_left' => 15,
'back_image' => getenv('base') . '/images/svgbg.png',
'back_image_width' => 100,
'back_image_left' => 50,
'back_image_top' => 60,
'show_subdivisions' => false,
'grid_colour' => '#ccc',
'grid_subdivision_colour' => '#ddd',
'marker_type' => 'circle',
'marker_size' => 3,
'marker_colour' => 'blue',
'best_fit' => 'straight',
'best_fit_colour' => 'red',
'best_fit_dash' => '2,2',
];
$width = 190;
$height = 200;
$values = [
'Dough' => 30, 'Ray' => 50, 'Me' => 40, 'So' => 25, 'Far' => 45, 'Lard' => 35
];
$graph = new Goat1000\SVGGraph\SVGGraph($width, $height, $settings);
$links = [
'Dough' => 'jpegsaver.php',
'Ray' => 'crcdropper.php',
'Me' => 'svggraph.php'
];
$graph->values($values);
$graph->links($links);
$graph->render('LineGraph');
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.