ofc_title.php 795 B

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