From 9d46debac7ca0b35694a45ab439fa48a75831eda Mon Sep 17 00:00:00 2001 From: goat1000 Date: Mon, 1 Aug 2022 15:00:08 +0100 Subject: [PATCH] Update for SVGGraph 3.16. --- CHANGES.txt | 8 ++++++++ README.txt | 2 +- SVGGraph.php | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index e5b55d8..3eb7dd6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,11 @@ +Version 3.16 (29/07/2022) +------------ +- Added support for multiple task bars/milestones on Gantt chart rows. +- Added axis_double_x and axis_double_y options for same axis both sides. +- Added axis_pad_* options for adding space between axes and grid. +- Added axis_extend_* options for extending ends of axes. +- Fixed axis with levels on right side of horizontal graph. + Version 3.15 (16/06/2022) ------------ - Added dependency arrow support to Gantt charts. diff --git a/README.txt b/README.txt index 1804cbd..7b052e9 100644 --- a/README.txt +++ b/README.txt @@ -1,4 +1,4 @@ -SVGGraph Library version 3.15 +SVGGraph Library version 3.16 ============================= This library provides PHP classes and functions for easily creating SVG diff --git a/SVGGraph.php b/SVGGraph.php index 3023782..ace58fd 100644 --- a/SVGGraph.php +++ b/SVGGraph.php @@ -25,7 +25,7 @@ class SVGGraph { use SVGGraphTrait; - const VERSION = 'SVGGraph 3.15'; + const VERSION = 'SVGGraph 3.16'; private $width = 100; private $height = 100; private $settings = [];