• Модуль: scale
  • Путь к файлу: ~/bitrix/modules/scale/lib/graphdata.php
  • Класс: BitrixScaleGraphData
  • Вызов: GraphData::getGraphs
static function getGraphs($graphCategory)
{
	if($graphCategory == '')
		throw new BitrixMainArgumentNullException("graphCategory");

	$graphics = self::getList();
	$result = array();

	if(isset($graphics[$graphCategory]))
		$result = $graphics[$graphCategory];

	return $result;
}