- Модуль: voximplant
- Путь к файлу: ~/bitrix/modules/voximplant/lib/integration/report/view/clusteredgraphbase.php
- Класс: BitrixVoximplantIntegrationReportViewClusteredGraphBase
- Вызов: ClusteredGraphBase::getSeries
public function getSeries($id, $name, $color)
{
return [
'type' => 'ColumnSeries',
'name' => $name,
'stacked' => false,
'dataFields' => [
'valueY' => 'value_' . $id,
'categoryX' => 'groupingField'
],
'columns' => [
'stroke' => $color,
'fill' => $color,
'width' => '85%',
'propertyFields' => [
'valueUrl' => 'targetUrl_' . $id,
],
],
'tooltip' => [
'background' => ['disabled' => true],
'filters' => [
[
'type' => 'DropShadowFilter',
'opacity' => 0.1
]
],
'locationY' => 0.5
]
];
}