Lines Matching refs:Data

307 …function drawScale(pData $Data, ScaleStyle $style, $Angle = 0, $Decimals = 1, $WithMargin = FALSE,…  argument
309 $this->validateData ( "drawScale", $Data->getData() );
325 $Divisions = $this->calculateDivisions($Data, $style);
340 if (count ( $Data->getData() ) > 1) {
342 $this->DivisionWidth = ($this->GArea_X2 - $this->GArea_X1) / (count ( $Data->getData() ) - 1);
344 $this->DivisionWidth = ($this->GArea_X2 - $this->GArea_X1) / (count ( $Data->getData() ));
352 $this->DataCount = count ( $Data->getData() );
378 $Data->getDataDescription()->getYFormat(),
379 $Data->getDataDescription()->getYUnit());
413 if ($Data->getDataDescription()->getYAxisName() != '') {
414 …$Position = imageftbbox ( $this->FontSize, 90, $this->FontName, $Data->getDataDescription()->getYA…
423 $Data->getDataDescription()->getYAxisName(),
431 $Data->getDataDescription()->getYAxisName(),
440 foreach ( $Data->getData() as $Values ) {
448 $Value = $Values[$Data->getDataDescription()->getPosition()];
450 $Data->getDataDescription()->getXFormat(),
451 $Data->getDataDescription()->getXUnit());
500 if ($Data->getDataDescription()->getXAxisName() != '') {
503 $Data->getDataDescription()->getXAxisName());
510 $Data->getDataDescription()->getXAxisName(),
527 private function calculateDivisions(pData $Data, ScaleStyle $style) { argument
528 if (isset ( $Data->getDataDescription()->values[0] )) {
532 $dataArray = $Data->getData();
533 $this->VMin = $dataArray[0] [$Data->getDataDescription()->values[0]];
534 $this->VMax = $dataArray[0] [$Data->getDataDescription()->values[0]];
547 foreach ( $Data->getData() as $Values ) {
548 foreach ( $Data->getDataDescription()->values as $ColName ) {
568 foreach ( $Data->getData() as $Values ) {
570 foreach ( $Data->getDataDescription()->values as $ColName ) {
571 $dataArray = $Data->getData();
617 …function drawXYScale(pData $Data, ScaleStyle $style, $YSerieName, $XSerieName, $Angle = 0, $Decima… argument
619 $this->validateData ( "drawScale", $Data->getData());
636 $this->VMin = $Data->getSeriesMin($YSerieName);
637 $this->VMax = $Data->getSeriesMax($YSerieName);
678 $Data->getDataDescription()->getYFormat(),
679 $Data->getDataDescription()->getYUnit());
701 $this->VXMax = $Data->getSeriesMax($XSerieName);
702 $this->VXMin = $Data->getSeriesMin($XSerieName);
743 $Data->getDataDescription()->getYFormat(),
744 $Data->getDataDescription()->getYUnit());
792 if ($Data->getDataDescription()->getYAxisName() != '') {
794 $Data->getDataDescription()->getYAxisName());
803 $Data->getDataDescription()->getYAxisName(),
808 $this->writeScaleXAxisCaption($Data, $style, $YMax);
1168 function setLabel($Data, $DataDescription, $SerieName, $ValueName, $Caption, Color $color = null) { argument
1175 $this->validateData ( "setLabel", $Data );
1180 foreach ( $Data as $Value ) {
1264 …function drawPlotGraph($Data, $DataDescription, $BigRadius = 5, $SmallRadius = 2, Color $color2 = … argument
1267 $this->validateData ( "drawPlotGraph", $Data );
1289 foreach ( $Data as $Values ) {
1374 $Data = $DataSet->getData();
1375 foreach ( $Data as $Values ) {
1440 function drawArea($Data, $Serie1, $Serie2, Color $color, $Alpha = 50) { argument
1442 $this->validateData ( "drawArea", $Data );
1448 foreach ( $Data as $Values ) {
1482 function writeValues($Data, $DataDescription, $Series) { argument
1485 $this->validateData ( "writeValues", $Data );
1496 foreach ( $Data as $Values ) {
1524 function drawLineGraph($Data, $DataDescription, $SerieName = "") { argument
1527 $this->validateData ( "drawLineGraph", $Data );
1536 foreach ( $Data as $Values ) {
1577 function drawXYGraph($Data, $YSerieName, $XSerieName, $PaletteID = 0) { argument
1583 foreach ($Data as $Values) {
1909 function drawFilledLineGraph($Data, $DataDescription, $Alpha = 100, $AroundZero = FALSE) { argument
1914 $this->validateData ( "drawFilledLineGraph", $Data );
1936 foreach (array_keys($Data) as $Key) {
1937 $Value = $Data [$Key] [$ColName];
1942 …YPos - 3, $XPos + 3, $YPos + 3, $DataDescription->description[$ColName], $Data [$Key] [$ColName] .…
1997 $this->drawLineGraph ( $Data, $DataDescription, $ColName );
2004 function drawOverlayBarGraph($Data, $DataDescription, $Alpha = 50) { argument
2007 $this->validateData ( "drawOverlayBarGraph", $Data );
2018 foreach (array_keys($Data) as $Key) {
2019 if (isset ( $Data [$Key] [$ColName] )) {
2020 $Value = $Data [$Key] [$ColName];
2046 …, $Y2 ), $X2, max ( $Y1, $Y2 ), $DataDescription->description[$ColName], $Data [$Key] [$ColName] .…
2072 function drawBarGraph($Data, $DataDescription, $Alpha = 100) { argument
2075 $this->validateData ( "drawBarGraph", $Data );
2092 foreach (array_keys($Data) as $Key) {
2093 if (isset ( $Data [$Key] [$ColName] )) {
2094 if (is_numeric ( $Data [$Key] [$ColName] )) {
2095 $Value = $Data [$Key] [$ColName];
2100 …dth - 1, max ( $YZero, $YPos ), $DataDescription->description[$ColName], $Data [$Key] [$ColName] .…
2131 function drawStackedBarGraph($Data, $DataDescription, $Alpha = 50, $Contiguous = FALSE) { argument
2134 $this->validateData ( "drawBarGraph", $Data );
2152 foreach (array_keys($Data) as $Key) {
2153 if (isset ( $Data [$Key] [$ColName] )) {
2154 if (is_numeric ( $Data [$Key] [$ColName] )) {
2155 $Value = $Data [$Key] [$ColName];
2169 …h - 1, max ( $YBottom, $YPos ), $DataDescription->description[$ColName], $Data [$Key] [$ColName] .…
2190 function drawLimitsGraph($Data, $DataDescription, Color $color = null) { argument
2197 $this->validateData ( "drawLimitsGraph", $Data );
2205 foreach (array_keys($Data) as $Key) {
2206 $Min = $Data [$Key] [$DataDescription->values[0]];
2207 $Max = $Data [$Key] [$DataDescription->values[0]];
2212 if (isset ( $Data [$Key] [$ColName] )) {
2213 if ($Data [$Key] [$ColName] > $Max && is_numeric ( $Data [$Key] [$ColName] )) {
2214 $Max = $Data [$Key] [$ColName];
2218 if (isset ( $Data [$Key] [$ColName] ) && is_numeric ( $Data [$Key] [$ColName] )) {
2219 if ($Data [$Key] [$ColName] < $Min) {
2220 $Min = $Data [$Key] [$ColName];
2281 …function drawRadarAxis($Data, $DataDescription, $Mosaic = TRUE, $BorderOffset = 10, Color $colorA … argument
2292 $this->validateData ( "drawRadarAxis", $Data );
2295 $Points = count ( $Data );
2303 foreach (array_keys($Data) as $Key) {
2304 if (isset ( $Data [$Key] [$ColName] ))
2305 if ($Data [$Key] [$ColName] > $MaxValue) {
2306 $MaxValue = $Data [$Key] [$ColName];
2386 if (isset ( $Data [$i] [$DataDescription->getPosition()] )) {
2387 $Label = $Data [$i] [$DataDescription->getPosition()];
2461 private function calculateMaxValue($Data, $DataDescription) { argument
2464 foreach (array_keys($Data) as $Key) {
2465 if (isset ( $Data [$Key] [$ColName] ))
2466 if ($Data [$Key] [$ColName] > $MaxValue && is_numeric($Data[$Key][$ColName])) {
2467 $MaxValue = $Data [$Key] [$ColName];
2477 function drawRadar($Data, $DataDescription, $BorderOffset = 10, $MaxValue = -1) { argument
2480 $this->validateData ( "drawRadar", $Data );
2482 $Points = count ( $Data );
2489 $MaxValue = $this->calculateMaxValue($Data, $DataDescription);
2498 foreach (array_keys($Data) as $Key) {
2499 if (isset ( $Data [$Key] [$ColName] )) {
2500 $Value = $Data [$Key] [$ColName];
2541 …function drawFilledRadar($Data, $DataDescription, $Alpha = 50, $BorderOffset = 10, $MaxValue = -1)… argument
2544 $this->validateData ( "drawFilledRadar", $Data );
2546 $Points = count ( $Data );
2553 $MaxValue = $this->calculateMaxValue($Data, $DataDescription);
2563 foreach (array_keys($Data) as $Key) {
2564 if (isset ( $Data [$Key] [$ColName] )) {
2565 $Value = $Data [$Key] [$ColName];
2821 protected function validateData($FunctionName, &$Data) { argument
2824 foreach ( $Data as $key => $Values ) {