icingaweb2/library/Icinga/Chart/Format.php

23 lines
445 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
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, '.', '');
}
}