mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 13:44:19 +01:00
15 lines
207 B
PHP
15 lines
207 B
PHP
<?php
|
|
|
|
class radar_axis_labels
|
|
{
|
|
// $labels : array
|
|
function radar_axis_labels( $labels )
|
|
{
|
|
$this->labels = $labels;
|
|
}
|
|
|
|
function set_colour( $colour )
|
|
{
|
|
$this->colour = $colour;
|
|
}
|
|
} |