icingaweb2/library/Icinga/Chart/Format.php

24 lines
494 B
PHP
Raw Permalink Normal View History

<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
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, '.', '');
}
}