Skip to content

Commit

Permalink
Updates for version 3.19.
Browse files Browse the repository at this point in the history
  • Loading branch information
goat1000 committed Jan 10, 2023
1 parent 6135f2a commit db2090f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 3.19 (10/01/2023)
------------
- Added ParetoChart.
- Added fill_under "full" option to always fill to bottom of grid.
- Updated code to work properly under PHP 8.2.

Version 3.18 (02/12/2022)
------------
- Added shading of flat 3D pie graph sides.
Expand Down
6 changes: 4 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SVGGraph Library version 3.18
SVGGraph Library version 3.19
=============================

This library provides PHP classes and functions for easily creating SVG
Expand Down Expand Up @@ -58,6 +58,8 @@ At the moment these types of graph are supported by SVGGraph:

Histogram - a bar graph that shows the range of values;

ParetoChart - a bar and line graph showing sorted and summed values;

MultiScatterGraph - scatter graph supporting multiple data sets;

HorizontalBarGraph - a bar graph with the axes swapped;
Expand Down Expand Up @@ -329,4 +331,4 @@ For more information about this software please contact the author,
graham(at)goat1000.com or visit the website: http://www.goat1000.com/


Copyright (C) 2009-2022 Graham Breach
Copyright (C) 2009-2023 Graham Breach
4 changes: 2 additions & 2 deletions SVGGraph.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) 2009-2022 Graham Breach
* Copyright (C) 2009-2023 Graham Breach
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
Expand All @@ -25,7 +25,7 @@ class SVGGraph {

use SVGGraphTrait;

const VERSION = 'SVGGraph 3.18';
const VERSION = 'SVGGraph 3.19';
private $width = 100;
private $height = 100;
private $settings = [];
Expand Down

0 comments on commit db2090f

Please sign in to comment.