function pData::AddSerie in Visitors 8
Same name and namespace in other branches
- 7.0 pchart/pData.inc \pData::AddSerie()
File
- pchart/
pData.inc, line 148
Class
Code
function AddSerie($SerieName = "Serie1") {
if (!isset($this->DataDescription["Values"])) {
$this->DataDescription["Values"][] = $SerieName;
}
else {
$Found = FALSE;
foreach ($this->DataDescription["Values"] as $key => $Value) {
if ($Value == $SerieName) {
$Found = TRUE;
}
}
if (!$Found) {
$this->DataDescription["Values"][] = $SerieName;
}
}
}