mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-20 07:57:41 -04:00
Tom git-svn-id: svn+ssh://jekkos@svn.code.sf.net/p/opensourcepos/code/@24 c3eb156b-1dc0-44e1-88ae-e38439141b53
15 lines
243 B
PHP
15 lines
243 B
PHP
<?php
|
|
|
|
class y_legend
|
|
{
|
|
function y_legend( $text='' )
|
|
{
|
|
$this->text = $text;
|
|
}
|
|
|
|
function set_style( $css )
|
|
{
|
|
$this->style = $css;
|
|
//"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";
|
|
}
|
|
} |