function pData::setScatterSerieShape in Visitors 7
Same name and namespace in other branches
- 7.2 pChart/class/pData.class.php \pData::setScatterSerieShape()
File
- pChart/
class/ pData.class.php, line 206
Class
Code
function setScatterSerieShape($ID, $Shape = SERIE_SHAPE_FILLEDCIRCLE) {
if (isset($this->Data["ScatterSeries"][$ID])) {
$this->Data["ScatterSeries"][$ID]["Shape"] = $Shape;
}
}