• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/views/jscomponent/amchart/column.php
  • Класс: Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\Column
  • Вызов: Column::handlerFinallyBeforePassToView
public function handlerFinallyBeforePassToView($dataFromReport)
{
	$result = parent::handlerFinallyBeforePassToView($dataFromReport);
	$result['categoryAxis']['labelRotation'] = 45;
	$result['categoryAxis']['gridPosition'] = "start";
	foreach ($result['graphs'] as &$graphConfig)
	{
		$graphConfig['type'] = 'column';
		$graphConfig['lineAlpha'] = '0.1';
		$graphConfig['fillAlphas'] = '1';
	}
	return $result;
}