Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
smoothedgraph.php
1
<?php
2
3
namespace
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart
;
4
5
use
Bitrix\Main\Localization\Loc
;
6
11
class
SmoothedGraph
extends
LinearGraph
12
{
13
const
VIEW_KEY
=
'smoothedLineGraph'
;
14
18
public
function
__construct
()
19
{
20
parent::__construct();
21
$this->
setLabel
(
Loc::getMessage
(
'REPORT_SMOOTHED_LINEAR_GRAPH_VIEW_LABEL'
));
22
$this->
setLogoUri
(
'/bitrix/images/report/visualconstructor/view-graph.jpg'
);
23
}
24
30
public
function
getCompatibleViewTypes
()
31
{
32
$viewTypes = parent::getCompatibleViewTypes();
33
$viewTypes[] =
'stack'
;
34
$viewTypes[] =
'linearGraph'
;
35
$viewTypes[] =
'column'
;
36
return
$viewTypes;
37
}
38
45
public
function
handlerFinallyBeforePassToView
($dataFromReport)
46
{
47
$result = parent::handlerFinallyBeforePassToView($dataFromReport);
48
foreach
($result[
'graphs'
] as &$graphConfig)
49
{
50
$graphConfig[
'type'
] =
'smoothedLine'
;
51
}
52
return
$result;
53
}
54
55
}
Bitrix\Main\Localization\Loc
Definition
loc.php:11
Bitrix\Main\Localization\Loc\getMessage
static getMessage($code, $replace=null, $language=null)
Definition
loc.php:29
Bitrix\Report\VisualConstructor\View\setLogoUri
setLogoUri($logoUri)
Definition
view.php:102
Bitrix\Report\VisualConstructor\View\setLabel
setLabel($label)
Definition
view.php:83
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\LinearGraph
Definition
lineargraph.php:12
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\SmoothedGraph
Definition
smoothedgraph.php:12
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\SmoothedGraph\__construct
__construct()
Definition
smoothedgraph.php:18
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\SmoothedGraph\getCompatibleViewTypes
getCompatibleViewTypes()
Definition
smoothedgraph.php:30
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\SmoothedGraph\handlerFinallyBeforePassToView
handlerFinallyBeforePassToView($dataFromReport)
Definition
smoothedgraph.php:45
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart\SmoothedGraph\VIEW_KEY
const VIEW_KEY
Definition
smoothedgraph.php:13
Bitrix\Report\VisualConstructor\Views\JsComponent\AmChart
Definition
base.php:3
modules
report
lib
visualconstructor
views
jscomponent
amchart
smoothedgraph.php
Создано системой
1.10.0