Skip to content

Commit

Permalink
Updated for version 2.24.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
goat1000 committed Aug 21, 2017
1 parent f074890 commit a874ddd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 2.24.1 (21/08/2017)
--------------
- Added stacked bar and line graph.
- 0 values are now labelled on bar graphs.
- Added "nonzero" data label filter to disable showing 0 value labels.
- Added support for associative and datetime keys in X-axis guidelines.
- Fixed axis text callback passing floating point values instead of integers
for array keys.

Version 2.24 (31/01/2017)
------------
- Added semi-donut graph.
Expand Down
7 changes: 5 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SVGGraph Library version 2.24
=============================
SVGGraph Library version 2.24.1
===============================

This library provides PHP classes and functions for easily creating SVG
graphs from data. As of version 2.0, SVGGraph works with PHP 5 only -
Expand Down Expand Up @@ -47,6 +47,9 @@ At the moment these types of graph are supported by SVGGraph:

BarAndLineGraph - a grouped bar graph and multi-line graph on the same graph;

StackedBarAndLineGraph - a stacked bar graph and multi-line graph on the same
graph;

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

MultiScatterGraph - scatter graph supporting multiple data sets;
Expand Down
2 changes: 1 addition & 1 deletion SVGGraph.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* For more information, please contact <[email protected]>
*/

define('SVGGRAPH_VERSION', 'SVGGraph 2.24');
define('SVGGRAPH_VERSION', 'SVGGraph 2.24.1');

require_once 'SVGGraphColours.php';

Expand Down

0 comments on commit a874ddd

Please sign in to comment.