Home
last modified time | relevance | path

Searched refs:Data (Results 1 – 25 of 228) sorted by relevance

12345678910

/plugin/statistics/inc/pchart/
H A DpData.php26 private $Data = array(); variable in pData
72 for($i = 0; $i < count($this->Data); $i++) {
73 if(isset ($this->Data [$i] [$Serie])) {
79 $this->Data [$ID] [$Serie] = $Val;
81 $this->Data[$ID]["Name"] = $Description;
82 } elseif(!isset ($this->Data [$ID] ["Name"])) {
83 $this->Data [$ID] ["Name"] = $ID;
107 if(isset ($this->Data [0])) {
108 foreach(array_keys($this->Data [0]) as $Key) {
159 return $this->Data;
[all...]
H A DpCache.php51 public function IsInCache($ID, $Data, $Hash = '') { argument
53 $Hash = $this->GetHash($ID, $Data);
61 public function WriteToCache($ID, $Data, pChart $Picture) { argument
62 $Hash = $this->GetHash($ID, $Data);
71 public function DeleteFromCache($ID, $Data) { argument
72 $Hash = $this->GetHash($ID, $Data);
83 * @param pData $Data pChart->getData ;)
87 public function GetFromCache($ID, $Data, $return = FALSE) { argument
88 $Hash = $this->GetHash($ID, $Data);
104 protected function GetHash($ID, $Data) { argument
[all...]
H A DpChart.php304 function drawScale(pData $Data, ScaleStyle $style, $Angle = 0, $Decimals = 1, $WithMargin = FALSE, $SkipLabels = 1, $RightScale = FALSE) { argument
305 /* Validate the Data and DataDescription array */
306 $this->validateData("drawScale", $Data->getData());
326 $Divisions = $this->calculateDivisions($Data, $style);
341 if(count($Data->getData()) > 1) {
343 $this->DivisionWidth = ($this->GArea_X2 - $this->GArea_X1) / (count($Data->getData()) - 1);
345 $this->DivisionWidth = ($this->GArea_X2 - $this->GArea_X1) / (count($Data->getData()));
353 $this->DataCount = count($Data->getData());
384 $Data->getDataDescription()->getYFormat(),
385 $Data
554 calculateDivisions(pData $Data, ScaleStyle $style) global() argument
645 drawXYScale(pData $Data, ScaleStyle $style, $YSerieName, $XSerieName, $Angle = 0, $Decimals = 1) global() argument
1256 setLabel($Data, $DataDescription, $SerieName, $ValueName, $Caption, Color $color = null) global() argument
1379 drawPlotGraph($Data, $DataDescription, $BigRadius = 5, $SmallRadius = 2, Color $color2 = null, $Shadow = FALSE) global() argument
1559 drawArea($Data, $Serie1, $Serie2, Color $color, $Alpha = 50) global() argument
1605 writeValues($Data, $DataDescription, $Series) global() argument
1649 drawLineGraph($Data, $DataDescription, $SerieName = '') global() argument
1705 drawXYGraph($Data, $YSerieName, $XSerieName, $PaletteID = 0) global() argument
2057 drawFilledLineGraph($Data, $DataDescription, $Alpha = 100, $AroundZero = FALSE) global() argument
2156 drawOverlayBarGraph($Data, $DataDescription, $Alpha = 50) global() argument
2228 drawBarGraph($Data, $DataDescription, $Alpha = 100) global() argument
2291 drawStackedBarGraph($Data, $DataDescription, $Alpha = 50, $Contiguous = FALSE) global() argument
2352 drawLimitsGraph($Data, $DataDescription, Color $color = null) global() argument
2451 drawRadarAxis($Data, $DataDescription, $Mosaic = TRUE, $BorderOffset = 10, Color $colorA = null, Color $colorS = null, $MaxValue = 1) global() argument
2650 calculateMaxValue($Data, $DataDescription) global() argument
2666 drawRadar($Data, $DataDescription, $BorderOffset = 10, $MaxValue = 1) global() argument
2735 drawFilledRadar($Data, $DataDescription, $Alpha = 50, $BorderOffset = 10, $MaxValue = 1) global() argument
3031 validateData($FunctionName, $Data) global() argument
[all...]
H A DPieChart.php45 * @param array Data pData->getData
51 public function drawPieLegend($XPos, $YPos, $Data, $DataDescription, Color $color, ShadowProperties $shadowProperties = null) { argument
56 /* Validate the Data and DataDescription array */
58 $this->validateData("drawPieLegend", $Data);
66 foreach($Data as $Key => $Value) {
103 foreach($Data as $Key => $Value) {
134 * @param array Data (PieChart->getData())
145 public function drawBasicPieGraph($Data, $DataDescription, $XPos, $YPos, $Radius = 100, $DrawLabels = PIE_NOLABEL, Color $color = null, $Decimals = 0, ShadowProperties $shadowProperties = null) { argument
158 /* Validate the Data and DataDescription array */
160 $this->validateData("drawBasicPieGraph", $Data);
314 drawFlatPieGraphWithShadow($Data, $DataDescription, $XPos, $YPos, $Radius = 100, $DrawLabels = PIE_NOLABEL, $SpliceDistance = 0, $Decimals = 0, ShadowProperties $shadowProperties = NULL) global() argument
359 drawFlatPieGraph($Data, $DataDescription, $XPos, $YPos, $Radius = 100, $DrawLabels = PIE_NOLABEL, $SpliceDistance = 0, $Decimals = 0, $AllBlack = FALSE, ShadowProperties $shadowProperties = null) global() argument
[all...]
/plugin/statdisplay/pchart/
H A DpData.php27 private $Data = array(); variable in pData
72 if (isset ( $this->Data [$i] [$Serie] )) {
78 $this->Data [$ID] [$Serie] = $Val;
80 $this->Data[$ID]["Name"] = $Description;
83 $this->Data [$ID] ["Name"] = $ID;
107 if (isset ( $this->Data [0] )) {
159 return $this->Data;
181 foreach ($this->Data as $valueSet) {
198 foreach ($this->Data as $valueSet) {
240 foreach (array_keys($this->Data) as $Key) {
[all …]
H A DpCache.php50 public function IsInCache($ID, $Data, $Hash = "") { argument
52 $Hash = $this->GetHash ( $ID, $Data );
63 public function WriteToCache($ID, $Data, pChart $Picture) { argument
64 $Hash = $this->GetHash ( $ID, $Data );
73 public function DeleteFromCache($ID, $Data) { argument
74 $Hash = $this->GetHash ( $ID, $Data );
84 * @param pData $Data pChart->getData ;)
89 public function GetFromCache($ID, $Data, $return = FALSE) { argument
90 $Hash = $this->GetHash ( $ID, $Data );
107 protected function GetHash($ID, $Data) { argument
[all …]
H A DpChart.php532 $dataArray = $Data->getData();
1180 foreach ( $Data as $Value ) {
1375 foreach ( $Data as $Values ) {
1448 foreach ( $Data as $Values ) {
1583 foreach ($Data as $Values) {
2213 if ($Data [$Key] [$ColName] > $Max && is_numeric ( $Data [$Key] [$ColName] )) {
2218 if (isset ( $Data [$Key] [$ColName] ) && is_numeric ( $Data [$Key] [$ColName] )) {
2295 $Points = count ( $Data );
2466 if ($Data [$Key] [$ColName] > $MaxValue && is_numeric($Data[$Key][$ColName])) {
2482 $Points = count ( $Data );
[all …]
H A DPieChart.php59 $this->validateData ( "drawPieLegend", $Data );
67 foreach ( $Data as $Key => $Value ) {
100 foreach ( $Data as $Key => $Value ) {
160 foreach (array_keys($Data) as $Key) {
161 if (isset ( $Data [$Key] [$ColName] ))
162 $PieSum = $PieSum + $Data [$Key] [$ColName];
163 $iValues [] = $Data [$Key] [$ColName];
309 $this->drawFlatPieGraph($Data,
350 foreach (array_keys($Data) as $Key) {
351 if (isset ( $Data [$Key] [$ColName] ))
[all …]
/plugin/projects/pchart/pchart/
H A Dpcache.php61 function IsInCache($ID,$Data,$Hash="") argument
64 $Hash = $this->GetHash($ID,$Data);
73 function WriteToCache($ID,$Data,$Picture) argument
75 $Hash = $this->GetHash($ID,$Data);
82 function DeleteFromCache($ID,$Data) argument
84 $Hash = $this->GetHash($ID,$Data);
92 function GetFromCache($ID,$Data) argument
94 $Hash = $this->GetHash($ID,$Data);
106 function GetHash($ID,$Data) argument
109 foreach($Data as $key => $Values)
H A Dpdata.php52 var $Data; variable in pData
57 $this->Data = "";
119 for($i=0;$i<=count($this->Data);$i++)
124 $this->Data[$ID][$Serie] = $Value;
126 $this->Data[$ID]["Name"] = $Description;
128 $this->Data[$ID]["Name"] = $ID;
134 $this->Data[$ID][$Serie] = $Val;
135 if (!isset($this->Data[$ID]["Name"]))
136 $this->Data[$ID]["Name"] = $ID;
163 if ( isset($this->Data[0]) )
[all …]
H A Dpchart.php514 if ( count($Data) > 1 )
1304 if ( isset($Data[$Key][$YSerieName]) && isset($Data[$Key][$XSerieName]) )
1409 if ( isset($Data[$Key][$Serie]) && is_numeric($Data[$Key][$Serie]))
1477 if ( isset($Data[$Key][$YSerieName]) && isset($Data[$Key][$XSerieName]) )
2045 if ( $Data[$Key][$ColName] > $Max && is_numeric($Data[$Key][$ColName]))
2048 if ( isset($Data[$Key][$ColName]) && is_numeric($Data[$Key][$ColName]))
2084 $Points = count($Data);
2294 …if ( $Data[$Key][$ColName] > $MaxValue && is_numeric($Data[$Key][$ColName])) { $MaxValue = $Data[$…
2370 …$PieSum = $PieSum + $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[…
2485 …$PieSum = $PieSum + $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[…
[all …]
/plugin/charter/lib/pchart/
H A DpCache.class.php61 function IsInCache($ID,$Data,$Hash="") argument
64 $Hash = $this->GetHash($ID,$Data);
73 function WriteToCache($ID,$Data,$Picture) argument
75 $Hash = $this->GetHash($ID,$Data);
82 function DeleteFromCache($ID,$Data) argument
84 $Hash = $this->GetHash($ID,$Data);
92 function GetFromCache($ID,$Data) argument
94 $Hash = $this->GetHash($ID,$Data);
106 function GetHash($ID,$Data) argument
109 foreach($Data as $key => $Values)
H A DpData.class.php50 var $Data; variable in pData
55 $this->Data = "";
126 for($i=0;$i<=count($this->Data);$i++)
131 $this->Data[$ID][$Serie] = $Value;
133 $this->Data[$ID]["Name"] = $Description;
135 $this->Data[$ID]["Name"] = $ID;
141 $this->Data[$ID][$Serie] = $Val;
142 if (!isset($this->Data[$ID]["Name"]))
143 $this->Data[$ID]["Name"] = $ID;
170 if ( isset($this->Data[0]) )
[all …]
H A DpChart.class.php514 if ( count($Data) > 1 )
1328 if ( isset($Data[$Key][$YSerieName]) && isset($Data[$Key][$XSerieName]) )
1433 if ( isset($Data[$Key][$Serie]) && is_numeric($Data[$Key][$Serie]))
1501 if ( isset($Data[$Key][$YSerieName]) && isset($Data[$Key][$XSerieName]) )
2070 if ( $Data[$Key][$ColName] > $Max && is_numeric($Data[$Key][$ColName]))
2073 if ( isset($Data[$Key][$ColName]) && is_numeric($Data[$Key][$ColName]))
2109 $Points = count($Data);
2319 …if ( $Data[$Key][$ColName] > $MaxValue && is_numeric($Data[$Key][$ColName])) { $MaxValue = $Data[$…
2395 …$PieSum = $PieSum + $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[…
2510 …$PieSum = $PieSum + $Data[$Key][$ColName]; $iValues[] = $Data[$Key][$ColName]; $iLabels[] = $Data[…
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/
H A DDataElementsTest.php5 use FINDOLOGIC\Export\Data\Attribute;
6 use FINDOLOGIC\Export\Data\Bonus;
7 use FINDOLOGIC\Export\Data\DateAdded;
8 use FINDOLOGIC\Export\Data\Description;
9 use FINDOLOGIC\Export\Data\Keyword;
10 use FINDOLOGIC\Export\Data\Name;
12 use FINDOLOGIC\Export\Data\Price;
13 use FINDOLOGIC\Export\Data\Property;
15 use FINDOLOGIC\Export\Data\Sort;
16 use FINDOLOGIC\Export\Data\Summary;
[all …]
H A DCSVSerializationTest.php6 use FINDOLOGIC\Export\Data\Bonus;
7 use FINDOLOGIC\Export\Data\DateAdded;
8 use FINDOLOGIC\Export\Data\Description;
9 use FINDOLOGIC\Export\Data\Name;
10 use FINDOLOGIC\Export\Data\Price;
11 use FINDOLOGIC\Export\Data\SalesFrequency;
12 use FINDOLOGIC\Export\Data\Sort;
13 use FINDOLOGIC\Export\Data\Summary;
14 use FINDOLOGIC\Export\Data\Url;
H A DXmlSerializationTest.php6 use FINDOLOGIC\Export\Data\Attribute;
7 use FINDOLOGIC\Export\Data\Image;
8 use FINDOLOGIC\Export\Data\Keyword;
9 use FINDOLOGIC\Export\Data\Ordernumber;
10 use FINDOLOGIC\Export\Data\Price;
11 use FINDOLOGIC\Export\Data\Property;
12 use FINDOLOGIC\Export\Data\Usergroup;
/plugin/webcomponent/_test/data/pages/
H A Dnavbar.txt39 <dropdown name="Data (State)" >
40 [[data:processing:|Data Processing]]
41 [[data:modeling:|Data Modeling]]
42 [[data:quality:|Data Quality]]
43 [[data:type:|Data Structure]]
44 [[data:type:|Data Type]]
45 [[:data:warehouse:|Data Warehouse]]
46 [[data:viz:|Data Visualization]]
47 [[data:partition:|Data Partition]]
52 <dropdown name="Data Type">
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/examples/
H A DXmlExample.php5 use FINDOLOGIC\Export\Data\Item;
7 use FINDOLOGIC\Export\Data\Ordernumber;
8 use FINDOLOGIC\Export\Data\Image;
9 use FINDOLOGIC\Export\Data\Attribute;
10 use FINDOLOGIC\Export\Data\Keyword;
11 use FINDOLOGIC\Export\Data\Usergroup;
12 use FINDOLOGIC\Export\Data\Property;
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/XML/
H A DXMLItem.php5 use FINDOLOGIC\Export\Data\Attribute;
6 use FINDOLOGIC\Export\Data\BaseImageMissingException;
7 use FINDOLOGIC\Export\Data\Image;
8 use FINDOLOGIC\Export\Data\ImagesWithoutUsergroupMissingException;
9 use FINDOLOGIC\Export\Data\Item;
10 use FINDOLOGIC\Export\Data\Usergroup;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/Resource/
H A DData.php28 class Data extends \Google\Service\Resource class
33 class_alias(Data::class, 'Google_Service_Analytics_Resource_Data');
/plugin/data-graph/
H A Dplugin.info.txt5 name Data Graph Plugin
6 desc Create Graphs for the Data Plugin
/plugin/datagraph/
H A Dplugin.info.txt5 name Data Graph Plugin
6 desc Create Graphs for the Data Plugin
/plugin/data-au/
H A Dplugin.info.txt5 name Structured Data-AU Plugin
6 desc Add and query structured data in your wiki - Forked from Structured Data release 2019-03-20…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D2137-no_filter.phpt23 Data set #0 is invalid.
27 Data set #0 is invalid.

12345678910