Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ofc_bar_3d.php « php-ofc-library « open-flash-chart « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b7f6976158c99783ae9a48743d7bfbcace2d2a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

include_once dirname(__FILE__) . '/ofc_bar_base.php';

class bar_3d_value
{
	function bar_3d_value( $top )
	{
		$this->top = $top;
	}
	
	function set_colour( $colour )
	{
		$this->colour = $colour;
	}
	
	function set_tooltip( $tip )
	{
		$this->tip = $tip;
	}
}