mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-01 23:24:12 +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;
|
|
}
|
|
} |