mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
- Localization of the menus 90% done. - Removed the old types of Flash charts, (no longer used anyway, now we rely on open-flash-charts) SVN:trunk[441]
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;
|
|
}
|
|
|
|
} |