ofc_y_axis.php 288 B

1234567891011121314151617
  1. <?php
  2. class y_axis extends y_axis_base
  3. {
  4. function y_axis(){}
  5. /**
  6. * @param $colour as string. The grid are the lines inside the chart.
  7. * HEX colour, e.g. '#ff0000'
  8. */
  9. function set_grid_colour( $colour )
  10. {
  11. $tmp = 'grid-colour';
  12. $this->$tmp = $colour;
  13. }
  14. }