Lines Matching refs:data

297     function drawRightScale(pData $data, ScaleStyle $style, $Angle = 0, $Decimals = 1, $WithMargin = FALSE, $SkipLabels = 1) {
298 $this->drawScale($data, $style, $Angle, $Decimals, $WithMargin, $SkipLabels, TRUE);
545 * data covers, as well as the scale style. Divisions should have
551 * side-effects on some class data members. This needs to be
898 private function writeScaleXAxisCaption(pData $data, ScaleStyle $style, $YMax) {
899 if($data->getDataDescription()->getXAxisName() != '') {
900 $Position = imageftbbox($this->FontSize, 90, $this->FontName, $data->getDataDescription()->getXAxisName());
910 $data->getDataDescription()->getXAxisName(),
996 * Draw the data legends
1646 * @brief Draws a line graph where the data gives Y values for a
1702 * @brief Draws a line graph where one series of data defines the
1742 function drawCubicCurve(pData $data, $Accuracy = .1, $SerieName = "") {
1746 $data->getDataDescription()
1748 $this->validateData("drawCubicCurve", $data->getData());
1754 foreach($data->getDataDescription()->values as $ColName) {
1763 $ColorID = $data->getDataDescription()->getColumnIndex($ColName);
1770 $data->getXYMap($ColName, $XIn, $YIn, $Missing, $Index);
1877 * one unit past the last. If there is missing data then
1897 function drawFilledCubicCurve(pData $data, $Accuracy = .1, $Alpha = 100, $AroundZero = FALSE) {
1901 $data->getDataDescription()
1903 $this->validateData("drawFilledCubicCurve", $data->getData());
1913 foreach($data->getDataDescription()->values as $ColName) {
1919 $ColorID = $data->getDataDescription()->getColumnIndex($ColName);
1925 $data->getXYMap($ColName, $XIn, $YIn, $Missing, $numElements);
2048 $this->drawCubicCurve($data, $Accuracy, $ColName);
3000 * Validate data contained in the description array
3029 * Validate data contained in the data array
3044 $this->Errors [] = "[Warning] ".$FunctionName." - No data set.";
3048 $this->Errors [] = "[Warning] ".$FunctionName." - Missing data in serie ".$key.".";