示例#1
0
文件: PieChart.php 项目: yiiext/chart
 /**
  * Initializes the widget.
  * This method is called by {@link CBaseController::createWidget}
  * and {@link CBaseController::beginWidget} after the widget's
  * properties have been initialized.
  */
 public function init()
 {
     parent::init();
     usort($this->data, array($this, "compare"));
     $this->_defaultHtmlOptions = array('id' => $this->getId());
 }
示例#2
0
文件: BarChart.php 项目: yiiext/chart
 /**
  * Initializes the widget.
  * This method is called by {@link CBaseController::createWidget}
  * and {@link CBaseController::beginWidget} after the widget's
  * properties have been initialized.
  */
 public function init()
 {
     parent::init();
     $this->_defaultHtmlOptions = array('id' => $this->getId());
 }