summaryrefslogtreecommitdiffstats
path: root/src/interfaces/horizontal_bar_renderer.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/horizontal_bar_renderer.php')
-rw-r--r--src/interfaces/horizontal_bar_renderer.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/interfaces/horizontal_bar_renderer.php b/src/interfaces/horizontal_bar_renderer.php
new file mode 100644
index 0000000..e6e937f
--- /dev/null
+++ b/src/interfaces/horizontal_bar_renderer.php
@@ -0,0 +1,48 @@
+<?php
+/**
+ * File containing the ezcGraphHorizontalBarRenderer interface
+ *
+ * @package Graph
+ * @version //autogentag//
+ * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
+ * @license http://ez.no/licenses/new_bsd New BSD License
+ */
+/**
+ * Interface which adds the methods reqired to render horizontal bar charts to
+ * the renderer.
+ *
+ * @version //autogentag//
+ * @package Graph
+ */
+interface ezcGraphHorizontalBarRenderer
+{
+ /**
+ * Draw horizontal bar
+ *
+ * Draws a horizontal bar as a data element in a line chart
+ *
+ * @param ezcGraphBoundings $boundings Chart boundings
+ * @param ezcGraphContext $context Context of call
+ * @param ezcGraphColor $color Color of line
+ * @param ezcGraphCoordinate $position Position of data point
+ * @param float $stepSize Space which can be used for bars
+ * @param int $dataNumber Number of dataset
+ * @param int $dataCount Count of datasets in chart
+ * @param int $symbol Symbol to draw for line
+ * @param float $axisPosition Position of axis for drawing filled lines
+ * @return void
+ */
+ public function drawHorizontalBar(
+ ezcGraphBoundings $boundings,
+ ezcGraphContext $context,
+ ezcGraphColor $color,
+ ezcGraphCoordinate $position,
+ $stepSize,
+ $dataNumber = 1,
+ $dataCount = 1,
+ $symbol = ezcGraph::NO_SYMBOL,
+ $axisPosition = 0.
+ );
+}
+
+?>
OpenPOWER on IntegriCloud