minor bug fix
[openemr.git] / library / openflashchart / php-ofc-library / ofc_y_axis_label.php
blobf2616f537ec39ee3265fed8aa0d671c43a518cea
1 <?php
3 /**
4 * y_axis_label see y_axis_labels
5 */
6 class y_axis_label
8 function y_axis_label( $y, $text)
10 $this->y = $y;
11 $this->set_text( $text );
14 function set_text( $text )
16 $this->text = $text;
19 function set_colour( $colour )
21 $this->colour = $colour;
24 function set_size( $size )
26 $this->size = $size;
29 function set_rotate( $rotate )
31 $this->rotate = $rotate;
34 function set_vertical()
36 $this->rotate = "vertical";