forked from rebillar/site-accueil-insa
31 lines
545 B
PHP
31 lines
545 B
PHP
<?php
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
namespace Piwik\Plugins\ImageGraph\StaticGraph;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class Pie extends PieGraph
|
|
{
|
|
public function renderGraph()
|
|
{
|
|
$this->initPieGraph(false);
|
|
|
|
$this->pieChart->draw2DPie(
|
|
$this->xPosition,
|
|
$this->yPosition,
|
|
$this->pieConfig
|
|
);
|
|
}
|
|
|
|
public function supportsComparison()
|
|
{
|
|
return false;
|
|
}
|
|
}
|