You are here

function QuantChartTable::build in Quant 7

Implements parent::build().

Overrides QuantChart::build

File

plugins/QuantChartTable.inc, line 15

Class

QuantChartTable
QuantChart plugin to provide simple HTML table charts

Code

function build() {
  switch ($this->quant->dataType) {
    case 'single':
      $this
        ->build_single();
      break;
    case 'multiple':
      $this
        ->build_multiple();
      break;
    case 'count':
      $this
        ->build_count();
      break;
  }
}