2014-07-09 18:00:02 +02:00
|
|
|
<?php
|
2015-02-04 10:46:36 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
2014-07-09 18:00:02 +02:00
|
|
|
|
|
|
|
namespace Icinga\Chart;
|
|
|
|
|
|
|
|
class Format
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Format a number into a number-string as defined by the SVG-Standard
|
|
|
|
*
|
|
|
|
* @see http://www.w3.org/TR/SVG/types.html#DataTypeNumber
|
|
|
|
*
|
|
|
|
* @param $number
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function formatSVGNumber($number)
|
|
|
|
{
|
|
|
|
return number_format($number, 1, '.', '');
|
|
|
|
}
|
|
|
|
}
|