EasyCharts_CDML.txt
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. The way you integrate EasyCharts with CDML documents is quite simple. 
  2. When you insert f.ex. a BarChart applet into a web page, you use an <applet> tag in such a way:
  3. <applet code=com.objectplanet.chart.BarChartApplet
  4.  archive=chart.jar width=300 height=200>
  5. <param name=sampleValues value="10,20,30,40,50">
  6. </applet>
  7. where "10,20,30,40,50" are values which bars on the applet should visualize. 
  8. In case of CDML document I suggest to try to use CDML fields instead of these values like this:
  9. [FMP-records]
  10. <applet code=com.objectplanet.chart.BarChartApplet
  11.  archive=chart.jar width=300 height=200>
  12. <param name=sampleValues value="[FMP-FIELD: White],[FMP-FIELD: Black],[FMP-FIELD: American_Indian],[FMP-FIELD: Asian],[FMP-FIELD: Other]">
  13. </applet>
  14. [/FMP-records]
  15. We have made an example that includes a very simple database and two html files (default.htm and results.html) that you can use to see how it works. You need to have chart.jar in same directory with these html files.
  16. Best regards,
  17. Philipp Kolibaba
  18. ObjectPlanet Inc.