<?phpclass Graphic01 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Simple Chart"; $this->render = new Chart("chart-01"); // init data $array_chart_data = array(); for ($i=0; $i < 12; $i++) { $array_chart_data[] = array($i, rand(0, 99)); } // set points of the graphic $this->render->addPoints("Data", $array_chart_data); }}?>