mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-10 03:24:12 +01:00
17 lines
254 B
PHP
17 lines
254 B
PHP
<?php
|
|
|
|
class y_axis extends y_axis_base
|
|
{
|
|
function y_axis(){}
|
|
|
|
//
|
|
// y axis right does NOT control
|
|
// grid colour, the left axis does
|
|
//
|
|
function set_grid_colour( $colour )
|
|
{
|
|
$tmp = 'grid-colour';
|
|
$this->$tmp = $colour;
|
|
}
|
|
|
|
} |