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

ofc_y_axis_labels.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: 75f777e5324990414c57c3b230f6ba3d5aa54fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php

class y_axis_labels
{
	function y_axis_labels(){}
	
	/**
	 * @param $steps which labels are generated
	 */
	function set_steps( $steps )
	{
		$this->steps = $steps;
	}
	
	/**
	 *
	 * @param $labels as an array of [y_axis_label or string]
	 */
	function set_labels( $labels )
	{
		$this->labels = $labels;
	}
	
	function set_colour( $colour )
	{
		$this->colour = $colour;
	}
	
	/**
	 * font size in pixels
	 */
	function set_size( $size )
	{
		$this->size = $size;
	}
	
	/**
	 * rotate labels
	 */
	function set_vertical()
	{
		$this->rotate = 270;
	}
	
	function rotate( $angle )
	{
		$this->rotate = $angle;
	}
	
	/**
	 * @param $text default text that all labels inherit
	 */
	function set_text( $text )
	{
		$this->text = $text;
	}
}