class flotData in Flot 6
Same name and namespace in other branches
- 7 flot.module \flotData
Data class for the flot API.
Make some nested objects to keep things simple when creating a data series.
Hierarchy
- class \flotData
Expanded class hierarchy of flotData
File
- ./
flot.module, line 111
View source
class flotData {
public $data;
public $lines;
public $bars;
public $points;
function __construct($data) {
$this->data = $data;
$this->lines = new stdClass();
$this->bars = new stdClass();
$this->points = new stdClass();
$this->grid = new StdClass();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
flotData:: |
public | property | ||
flotData:: |
public | property | ||
flotData:: |
public | property | ||
flotData:: |
public | property | ||
flotData:: |
function |