You are here

class flotStylePie in Flot 7

Hierarchy

Expanded class hierarchy of flotStylePie

File

./flot.module, line 487

View source
class flotStylePie extends flotStyle {
  function __construct() {
    parent::__construct();
    $this->series->pie->show = TRUE;
    $this->series->pie->radius = 1;
    $this->series->pie->label = new stdClass();
    $this->series->pie->label->show = TRUE;
    $this->series->pie->label->radius = 2 / 3;
    $this->series->pie->label->threshold = 0.1;
    $this->series->pie->label->background = new stdClass();
    $this->series->pie->label->background->opacity = 1;
  }

}

Members