• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/integration/report/view/lineargraphbase.php
  • Класс: BitrixVoximplantIntegrationReportViewLinearGraphBase
  • Вызов: LinearGraphBase::getGraph
protected function getGraph($id, $title, $color, $handlerClassName)
{
	return [
		'bullet' => 'round',
		'title' => $title,
		'fillColors' => $color,
		'lineColor' => $color,
		'valueField' => 'value_' . $id,
		'descriptionField' => 'label_' . $id,
		'fillAlphas' => 0,
		'balloonFunction' => "BX.Voximplant.Report.Dashboard.Content.$handlerClassName.renderBalloon",
		'balloon' => [
			'borderThickness' => 0,
		],
	];
}