34 $this->hidden = (bool)$a_value;
54 $this->label = (string)$a_value;
77 $this->data[] = array($a_x, $a_y);
101 public function setFill($a_value, $a_color = null)
103 $this->fill = $a_value;
106 $this->fill_color = $a_color;
117 return array(
"fill"=>$this->fill,
"color"=>$this->fill_color);
139 $series =
new stdClass();
140 $series->label = str_replace(
"\"",
"\\\"", $this->
getLabel());
142 $series->data = array();
143 foreach($this->
getData() as $point)
145 $series->data[] = array($point[0], $point[1]);
173 public function parseGlobalOptions(stdClass $a_options,
ilChart $a_chart)