home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / OTHER / NETSCAPE / README.TXT < prev    next >
Encoding:
Text File  |  1998-10-24  |  2.4 KB  |  103 lines

  1. =========================================================
  2.                  TeeChart Pro
  3.       Copyright 1995-1998 by David Berneda. 
  4.              All Rights Reserved.
  5.  
  6. teeMach, SL
  7. www.teemach.com
  8. =========================================================
  9.  
  10.    Netscape TeeChart Plugin 
  11. =============================================
  12.  
  13. This Netscape plugin is a DLL that allows creating Charts
  14. in HTML language and displaying them inside Netscape.
  15.  
  16. The NPTeeDem.htm page contains an example of use.
  17.  
  18. You should run Netscape version 3.0 or higher to install
  19. the TeeChart plugin.
  20.  
  21. Installation:
  22. ==============
  23.  
  24. 1) Close Netscape
  25. 2) Copy NPTeeCha.DLL to \Netscape\Program\Plugin folder.
  26. 3) Open Netscape
  27.  
  28. Testing:
  29. ==============
  30.  
  31. ** Open the "NPTeeDem.HTM" file under Netscape to test the plugin.
  32.  
  33. You should see a Chart.
  34.  
  35. If not, then recheck your installation.
  36. You can select "About --> Plugins" in Netscape menu to show all
  37. installed plugins.  You should see "TeeChart plugin".
  38.  
  39.  
  40. Description:
  41. ==============
  42.  
  43. The plugin is a DLL used by Netscape to show TeeChart controls
  44. in HTML pages.
  45.  
  46. To create a new TeeChart, edit an HTM file and insert this
  47. special code:
  48.  
  49. <EMBED TYPE="application/x-TeeChart-plugin"
  50.  ALIGN=CENTER WIDTH=500 HEIGHT=300
  51.  name="teedemo"
  52. >
  53.  
  54. This will show an empty Chart on Netscape.
  55.  
  56. To show data on the Chart, you can specify a "*.tee"
  57. file URL in the HTM page:
  58.  
  59. <EMBED TYPE="application/x-TeeChart-plugin"
  60.  ALIGN=CENTER WIDTH=500 HEIGHT=300
  61.  name="teedemo"
  62.  URLChart="http://www.teemach.com/demo1.tee" 
  63. >
  64.  
  65. The plugin will start downloading this URL file and will
  66. load it into the Chart component, showing both the properties
  67. and point values contained in the *.tee URL file.
  68.  
  69. There are other several parameters you can use in the HTM
  70. page. More will be added in future releases.
  71.  
  72. Parameter name:
  73. -----------------
  74. View3D         True / False
  75. TitleText      String
  76. ChartType      String 
  77.   "Bar"
  78.   "Line"
  79.   "Point"
  80.   "Pie"
  81.   "HorizBar"
  82.   "Area"
  83.   "FastLine"
  84.  
  85. Color           Integer
  86. Chart3DPercent  Integer
  87. LegendVisible   True / False
  88.  
  89.  
  90. Copyrights:
  91. ===========
  92.  
  93. This TeeChart Netscape Plugin has been created with
  94. Mr. Mike Scott's Netscape Plugin components.
  95. You can contact Mr. Mike Scott at this Compuserve
  96. email address: 
  97.  
  98.    100140.2420@compuserve.com
  99.  
  100. Netscape is copyright of Netscape Communications:
  101. www.netscape.com
  102. ==========================================================
  103.