You are here

class flotPie in Flot 7

Basic pie style class for the flot.

Hierarchy

Expanded class hierarchy of flotPie

File

./flot.module, line 437

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

}

Members