mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-01 06:28:46 +02:00
Moved under "trunk" to be able to track releases under "tags"
SVN:trunk[55]
This commit is contained in:
34
pages/php-ofc-library/ofc_x_axis_labels.php
Normal file
34
pages/php-ofc-library/ofc_x_axis_labels.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
class x_axis_labels
|
||||
{
|
||||
function x_axis_labels(){}
|
||||
|
||||
function set_steps( $steps )
|
||||
{
|
||||
$this->steps = $steps;
|
||||
}
|
||||
|
||||
//
|
||||
// An array of [x_axis_label or string]
|
||||
//
|
||||
function set_labels( $labels )
|
||||
{
|
||||
$this->labels = $labels;
|
||||
}
|
||||
|
||||
function set_colour( $colour )
|
||||
{
|
||||
$this->colour = $colour;
|
||||
}
|
||||
|
||||
function set_size( $size )
|
||||
{
|
||||
$this->size = $size;
|
||||
}
|
||||
|
||||
function set_vertical()
|
||||
{
|
||||
$this->rotate = "vertical";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user