• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/report/handler/salesdynamics/basegraph.php
  • Класс: Bitrix\Crm\Integration\Report\Handler\SalesDynamics\BaseGraph
  • Вызов: BaseGraph::getDateFormatForLabel
protected function getDateFormatForLabel()
{
	switch ($this->getDateGrouping())
	{
		case static::GROUP_DAY:
			return Context::getCurrent()->getCulture()->getDayMonthFormat();
		case static::GROUP_WEEK_DAY:
			return "l";
		case static::GROUP_MONTH:
			return "f";
			break;
		default:
			return Context::getCurrent()->getCulture()->getLongDateFormat();
	}
}