# give/4.16.9/includes/libraries/googlechartlib/markers/GoogleChartRangeMarker.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 40 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/includes/libraries/googlechartlib/markers/GoogleChartRangeMarker.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/includes/libraries/googlechartlib/markers/GoogleChartRangeMarker.php
- Modified: 2018-05-03T03:28:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/includes/libraries/googlechartlib/markers/GoogleChartRangeMarker.php#L10-L20`.

```php
<?php

/** @file
 * This file is part of Google Chart PHP library.
 *
 * Copyright (c) 2010 Rémi Lanvin <remi@cloudconnected.fr>
 *
 * Licensed under the MIT license.
 *
 * For the full copyright and license information, please view the LICENSE file.
 */

require_once dirname(__FILE__).'/../GoogleChartMarker.php';

/**
 * A Range marker.
 *
 * This class implement Range Markers feature (@c chm).
 *
 * @par Example
 *
 *
 * @see GoogleChartMarker
 * @see http://code.google.com/apis/chart/docs/chart_params.html#gcharts_range_markers
 */
class GoogleChartRangeMarker extends GoogleChartMarker
{
	/**
	 * Compute the parameter value.
	 *
	 * @note For internal use only.
	 * @param $index (int) index of the data serie.
	 * @return string
	 */
	public function compute($index)
	{

	}
}

```
