minor bug fix
[openemr.git] / library / openflashchart / php-ofc-library / ofc_title.php
blobcda1de0068af521b8c3c1e04c57375119eb827d9
1 <?php
3 /**
4 * Set the title of a chart, make one of these and pass it into
5 * open_flash_chart set_title
6 */
7 class title
9 function title( $text='' )
11 $this->text = $text;
14 /**
15 * A css string. Can optionally contain:
16 * - font-size
17 * - font-family
18 * - font-weight
19 * - color
20 * - background-color
21 * - text-align
22 * - margin
23 * - margin-left
24 * - margin-right
25 * - margin-top
26 * - margin-bottom
27 * - padding
28 * - padding-left
29 * - padding-right
30 * - padding-top
31 * - padding-bottom
32 * just like the css we use all the time :-)
34 function set_style( $css )
36 $this->style = $css;
37 //"{font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;}";