home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Shareware / Grafica / 3dpie / Examples / applet-single-2D-pie-chart.txt < prev    next >
Text File  |  2004-07-06  |  3KB  |  70 lines

  1. <applet code="PiechartApplet.class" archive="Piechart.jar" width="280" height="160">
  2.  
  3. <!-- Start Up Parameters -->
  4. <PARAM name="LOADINGMESSAGE" value="Creating Chart - Please Wait.">
  5. <PARAM name="STEXTCOLOR"     value="0,0,100">
  6. <PARAM name="STARTUPCOLOR"   value="255,255,255">
  7.  
  8. <!-- Chart Switches -->
  9. <PARAM name="3D"                 value="false">
  10. <PARAM name="Slabels"            value="true">
  11. <PARAM name="displayPercentages" value="true">
  12.  
  13. <!-- Chart Characteristics -->
  14. <PARAM name="nPies"      value="1">
  15. <PARAM name="ndecplaces" value="0">
  16.  
  17. <!-- Link Cursor -->
  18. <!--  valid values are - crosshair, default, hand, move, text or wait -->
  19. <PARAM name="linkCursor" value="hand">
  20.  
  21. <!-- Popup segment Value Pre & Post Symbols -->
  22. <PARAM name="valuepresym"  value="$">
  23.  
  24. <!-- thousand seperater -->
  25. <PARAM name="thousandseparator" value=",">
  26.  
  27. <!-- Additional font information -->
  28. <PARAM name="popupfont"  value="Arial,B,10">
  29. <PARAM name="slabelfont" value="Arial,N,10">
  30.  
  31. <!-- Additional color information -->
  32. <PARAM name="bgcolor"      value="#FFFFFF">
  33. <PARAM name="labelcolor"   value="#323232">
  34. <PARAM name="popupbgcolor" value="#A0A0CC">
  35.  
  36. <!-- Title -->
  37. <!-- title   text|xpos,ypos|Font|Color Defintion"> -->
  38. <PARAM name="title" value="Sales by Region|10,15|Arial,BI,12|#888888">
  39.  
  40. <!-- Pie Data -->
  41. <!--  PieN   x,y,size,number of segments, seperation -->
  42. <PARAM name="Pie1" value="85,35,100,6,0">
  43.  
  44. <!-- Pie Segement Labels -->
  45. <PARAM name="pie1label1" value="N.America">
  46. <PARAM name="pie1label2" value="Europe">
  47. <PARAM name="pie1label3" value="Asia">
  48. <PARAM name="pie1label4" value="Africa">
  49. <PARAM name="pie1label5" value="Australia">
  50. <PARAM name="pie1label6" value="S.America">
  51.  
  52. <!-- Segment Data -->
  53. <!-- segmentN       series color|legend label|URL|Target Frame -->
  54. <PARAM name="segment1" value="115,152,164|N.America">
  55. <PARAM name="segment2" value="99,99,156|Europe">
  56. <PARAM name="segment3" value="185,53,8|Asia">
  57. <PARAM name="segment4" value="239,214,115|Africa">
  58. <PARAM name="segment5" value="0,63,68|Australia">
  59. <PARAM name="segment6" value="17,97,158|S.America">
  60.  
  61. <!-- Pie Data -->
  62. <!--                value,URL,Target Frame -->
  63. <PARAM name="data1series1" value="10320,http://www.jpowered.com,_self">
  64. <PARAM name="data2series1" value="6605,http://www.jpowered.com,_self">
  65. <PARAM name="data3series1" value="3480,http://www.jpowered.com,_self">
  66. <PARAM name="data4series1" value="1940,http://www.jpowered.com,_self">
  67. <PARAM name="data5series1" value="2420,http://www.jpowered.com,_self">
  68. <PARAM name="data6series1" value="1324,http://www.jpowered.com,_self">
  69.  
  70. </applet>