You are here

function pData::setScatterSerieShape in Visitors 7.2

Same name and namespace in other branches
  1. 7 pChart/class/pData.class.php \pData::setScatterSerieShape()

File

pChart/class/pData.class.php, line 206

Class

pData

Code

function setScatterSerieShape($ID, $Shape = SERIE_SHAPE_FILLEDCIRCLE) {
  if (isset($this->Data["ScatterSeries"][$ID])) {
    $this->Data["ScatterSeries"][$ID]["Shape"] = $Shape;
  }
}