ofc_y_axis_label.php 509 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * y_axis_label see y_axis_labels
  4. */
  5. class y_axis_label
  6. {
  7. function y_axis_label( $y, $text)
  8. {
  9. $this->y = $y;
  10. $this->set_text( $text );
  11. }
  12. function set_text( $text )
  13. {
  14. $this->text = $text;
  15. }
  16. function set_colour( $colour )
  17. {
  18. $this->colour = $colour;
  19. }
  20. function set_size( $size )
  21. {
  22. $this->size = $size;
  23. }
  24. function set_rotate( $rotate )
  25. {
  26. $this->rotate = $rotate;
  27. }
  28. function set_vertical()
  29. {
  30. $this->rotate = "vertical";
  31. }
  32. }