芝麻web文件管理V1.00
编辑当前文件:/home/jambtst2015/public_html/giraffeng.com/libchart/classes/model/XYDataSet.php
. * */ /** * Set of data in the form of (x, y) items. * * @author Jean-Marc Trmeaux (jm.tremeaux at gmail.com) * Created on 10 may 2007 */ class XYDataSet extends DataSet { private $pointList; /** * Constructor of XYDataSet. * */ public function XYDataSet() { $this->pointList = array(); } /** * Add a new point to the dataset. * * @param Point Point to add to the dataset */ public function addPoint($point) { array_push($this->pointList, $point); } /** * Getter of pointList. * * @return List of points. */ public function getPointList() { return $this->pointList; } } ?>