mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-26 10:17:59 -05:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
17 lines
288 B
PHP
17 lines
288 B
PHP
<?php
|
|
|
|
class y_axis extends y_axis_base
|
|
{
|
|
function y_axis(){}
|
|
|
|
/**
|
|
* @param $colour as string. The grid are the lines inside the chart.
|
|
* HEX colour, e.g. '#ff0000'
|
|
*/
|
|
function set_grid_colour( $colour )
|
|
{
|
|
$tmp = 'grid-colour';
|
|
$this->$tmp = $colour;
|
|
}
|
|
|
|
} |