update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
|
|
@ -416,14 +416,14 @@ abstract class GridGraph extends StaticGraph
|
|||
// can not currently be used because pChart's label design is not flexible enough
|
||||
// e.g: it is not possible to remove the box border & the square icon
|
||||
// it would require modifying pChart code base which we try to avoid
|
||||
// see http://dev.piwik.org/trac/ticket/3396
|
||||
// see https://github.com/piwik/piwik/issues/3396
|
||||
// protected function displayMinMaxValues()
|
||||
// {
|
||||
// if($displayMinMax)
|
||||
// if ($displayMinMax)
|
||||
// {
|
||||
// // when plotting multiple metrics, display min & max on both series
|
||||
// // to fix: in vertical bars, labels are hidden when multiple metrics are plotted, hence the restriction on count($this->ordinateSeries) == 1
|
||||
// if($this->multipleMetrics && count($this->ordinateSeries) == 1)
|
||||
// if ($this->multipleMetrics && count($this->ordinateSeries) == 1)
|
||||
// {
|
||||
// $colorIndex = 1;
|
||||
// foreach($this->ordinateSeries as $column => $data)
|
||||
|
|
@ -467,13 +467,13 @@ abstract class GridGraph extends StaticGraph
|
|||
// $maxValueIndex = 0;
|
||||
// foreach($data as $index => $value)
|
||||
// {
|
||||
// if($value > $maxValue)
|
||||
// if ($value > $maxValue)
|
||||
// {
|
||||
// $maxValue = $value;
|
||||
// $maxValueIndex = $index;
|
||||
// }
|
||||
//
|
||||
// if($value < $minValue)
|
||||
// if ($value < $minValue)
|
||||
// {
|
||||
// $minValue = $value;
|
||||
// $minValueIndex = $index;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue