Source for file Points.php
Documentation is available at Points.php
* <p>Title: Points class</p>
* <p>Description: Point Series.</p>
* <pre><font face="Courier" size="4">
* pointSeries = new com.steema.teechart.styles.Points(myChart.getChart());
* pointSeries.fillSampleValues(20);
* <p>Copyright (c) 2005-2008 by Steema Software SL. All Rights Reserved.</p>
* <p>Company: Steema Software SL</p>
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
public function Points($c= null) {
if ($this->point == null) {
$tmpColor = new Color(0,0,0,0,true);
// TODO review done at bubble.. $this->getMarks()->getCallout()->setDefaultLength(0);
* Sets the Pen for the Point connecting Lines.
return parent::getLinePen();
$tmpColor = new Color(0,0,0,0,true);
return ($this->point == null) ? $tmpColor : $this->getPointer()->getColor();
parent::setColor($value);
parent::setColorEach($value);
$tmpColor = new Color(0,0,0,0,true);
$this->point->getBrush()->setForegroundColor($tmpColor);
return $this->Language->getString("GalleryPoint");
parent::createSubGallery($addSubChart);
$this->getPointer()->getBrush()->setVisible(false);
$this->getPointer()->getGradient()->setVisible(true);
|