Files
crm.e5.pl/include/ECM/open_flash_chart2/php-ofc-library/ofc_y_axis.php

17 lines
288 B
PHP
Raw Normal View History

2024-04-27 09:23:34 +02:00
<?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;
}
}