You are here

function QuantChartChartAPI::render in Quant 7

Implements parent::render().

Overrides QuantChart::render

File

plugins/QuantChartChartAPI.inc, line 114

Class

QuantChartChartAPI
QuantChart plugin class to generate charts using chart.module (Chart API)

Code

function render() {

  // Generate the chart
  $this->output = theme('chart', array(
    'chart' => $this->chart,
  ));

  // Return the output
  return $this->output;
}