GoogleChartCandlestickMarker.php
8 years ago
GoogleChartLineMarker.php
8 years ago
GoogleChartRangeMarker.php
8 years ago
GoogleChartShapeMarker.php
8 years ago
GoogleChartTextMarker.php
8 years ago
GoogleChartRangeMarker.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | /** @file |
| 4 | * This file is part of Google Chart PHP library. |
| 5 | * |
| 6 | * Copyright (c) 2010 Rémi Lanvin <remi@cloudconnected.fr> |
| 7 | * |
| 8 | * Licensed under the MIT license. |
| 9 | * |
| 10 | * For the full copyright and license information, please view the LICENSE file. |
| 11 | */ |
| 12 | |
| 13 | require_once dirname(__FILE__).'/../GoogleChartMarker.php'; |
| 14 | |
| 15 | /** |
| 16 | * A Range marker. |
| 17 | * |
| 18 | * This class implement Range Markers feature (@c chm). |
| 19 | * |
| 20 | * @par Example |
| 21 | * |
| 22 | * |
| 23 | * @see GoogleChartMarker |
| 24 | * @see http://code.google.com/apis/chart/docs/chart_params.html#gcharts_range_markers |
| 25 | */ |
| 26 | class GoogleChartRangeMarker extends GoogleChartMarker |
| 27 | { |
| 28 | /** |
| 29 | * Compute the parameter value. |
| 30 | * |
| 31 | * @note For internal use only. |
| 32 | * @param $index (int) index of the data serie. |
| 33 | * @return string |
| 34 | */ |
| 35 | public function compute($index) |
| 36 | { |
| 37 | |
| 38 | } |
| 39 | } |
| 40 |