Files
opensourcepos/application/libraries/ofc-library/ofc_y_axis_label.php
pappastech ecdf3a5aa1 Version 2.0_RC1. Upgrade to CI 2.1.0.
Tom

git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
2012-01-16 02:16:01 +00:00

38 lines
509 B
PHP

<?php
/**
* y_axis_label see y_axis_labels
*/
class y_axis_label
{
function y_axis_label( $y, $text)
{
$this->y = $y;
$this->set_text( $text );
}
function set_text( $text )
{
$this->text = $text;
}
function set_colour( $colour )
{
$this->colour = $colour;
}
function set_size( $size )
{
$this->size = $size;
}
function set_rotate( $rotate )
{
$this->rotate = $rotate;
}
function set_vertical()
{
$this->rotate = "vertical";
}
}