- Модуль: voximplant
- Путь к файлу: ~/bitrix/modules/voximplant/lib/integration/report/view/clusteredgraphbase.php
- Класс: BitrixVoximplantIntegrationReportViewClusteredGraphBase
- Вызов: ClusteredGraphBase::getConfig
public function getConfig()
{
return [
'type' => $this->getAmChartType(),
'data' => [],
'xAxes' => [
[
'type' => 'CategoryAxis',
'dataFields' => ['category' => 'groupingField'],
'renderer' => [
'labels' => [
'truncate' => true,
'maxWidth' => 180,
'tooltipText' => '{category}',
'ellipsis' => '...'
],
'grid' => [
'template' => [
'location' => 0,
]
]
],
'cursorTooltipEnabled' => false,
]
],
'yAxes' => [
[
'type' => 'ValueAxis',
'cursorTooltipEnabled' => false
]
],
'series' => [],
'legend' => [
'dx' => 46,
'position' => 'bottom',
'contentAlign' => 'left',
'markers' => [
'width' => 8,
'height' => 8
],
'labels' => [
'fontSize' => '11',
],
],
'zoomOutButton' => [
'disabled' => true
],
];
}