function __construct()
 {
     parent::__construct();
     $this->chart->type = 'areaspline';
     $this->xAxis = new XAxis();
     $this->yAxis = new YAxis();
     $this->initPlotOptions();
 }
 function __construct()
 {
     parent::__construct();
     $this->chart->type = 'area';
     $this->xAxis = new XAxis();
     $this->yAxis = new YAxis();
     $this->initPlotOptions();
     // $this->chart->alignTicks = true;
     // $this->chart->endOnTick = false;
 }
Beispiel #3
0
 function __construct()
 {
     parent::__construct();
     $this->chart->type = 'pie';
     $this->initPlotOptions();
 }