function pData::setScatterSerieShape

5.x pData.class.php pData::setScatterSerieShape($ID, $Shape = SERIE_SHAPE_FILLEDCIRCLE)

File

inc/pchart/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;
  }
}