diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-01-04 11:02:35 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-01-04 11:02:35 +0000 |
commit | 097f99bcb85dc06ddd9c78b20c75cbb3363aa1a6 (patch) | |
tree | 429bace7b2b45c0dea6f044659232e2c220a51ee /src/interfaces/chart.php | |
parent | f1983871f351d2195102760db3141ed70f8772a9 (diff) | |
download | zetacomponents-graph-097f99bcb85dc06ddd9c78b20c75cbb3363aa1a6.zip zetacomponents-graph-097f99bcb85dc06ddd9c78b20c75cbb3363aa1a6.tar.gz |
- Make renderToOutput() method available to chart
Diffstat (limited to 'src/interfaces/chart.php')
-rw-r--r-- | src/interfaces/chart.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/interfaces/chart.php b/src/interfaces/chart.php index d33c086..c08dad1 100644 --- a/src/interfaces/chart.php +++ b/src/interfaces/chart.php @@ -257,6 +257,16 @@ abstract class ezcGraphChart * @return void */ abstract public function render( $widht, $height, $file = null ); + + /** + * Renders this chart to direct output + * + * Does the same as ezcGraphChart::render(), but renders directly to + * output and not into a file. + * + * @return void + */ + abstract public function renderToOutput( $widht, $height ); } ?> |