home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 8 / CDACTUAL8.iso / share / os2 / graficos / gle / four.gle < prev    next >
Encoding:
Text File  |  1994-01-12  |  1.4 KB  |  66 lines

  1. size 26 18 box  ! This is FOUR.GLE,  four graphs in a square 
  2. set font pldr
  3. set hei 0.57 just cent
  4. amove  0 0 
  5. begin graph
  6.     size 13 9 
  7.     title "Tree Spacing 4.5 x 2.0 m"
  8.     xtitle "fruit size grade"
  9.     ytitle "tonnes/ha"
  10.     xaxis  min -0.5 max 5.5 dticks 1
  11.     yaxis  min 0 max 30 dsubticks 10
  12.     xnames "M" "T" "W" "T" "F" "S" 
  13.     noborder
  14.     bar d1 width 1.0 fill grey10
  15.     data test.dat
  16. end graph
  17.  
  18. amove  0 9
  19. begin graph
  20.     size 13 9 
  21.     title "Tree Spacing 4.5 x 2.0 m"
  22.     xtitle "fruit size grade"
  23.     ytitle "tonnes/ha"
  24.     xaxis  min -0.5 max 5.5 dticks 1
  25.     yaxis  min 0 max 30 dsubticks 10
  26.     xnames "M" "T" "W" "T" "F" "S" 
  27.     noborder
  28.     bar d1 width 1.0 fill shade5
  29.     data test.dat
  30. end graph
  31.  
  32. amove  13 9
  33. begin graph
  34.     size 13 9
  35.     title "Tree Spacing 4.5 x 2.0 m"
  36.     xtitle "fruit size grade"
  37.     ytitle "tonnes/ha"
  38.     xaxis  min -0.5 max 5.5 dticks 1
  39.     yaxis  min 0 max 30 dsubticks 10
  40.     xnames "M" "T" "W" "T" "F" "S" 
  41.     noborder
  42.     data test.dat
  43.     bar d1 width .8 fill shade
  44.     let d3 = d1+5+.5*d1
  45.     bar d3 from d1 width .8 fill grey30 
  46. end graph
  47.  
  48. amove  13 0
  49. begin graph
  50.     size 13 9
  51.     title "Tree Spacing 4.5 x 2.0 m"
  52.     xtitle "fruit size grade"
  53.     ytitle "tonnes/ha"
  54.     xaxis  min -0.5 max 5.5 dticks 1
  55.     yaxis  min 0 max 30 dsubticks 10
  56.     xnames "M" "T" "W" "T" "F" "S" 
  57.     noborder
  58.     data test.dat
  59.     bar d1,d2  fill grid1,grid3 width .3 dist .3 
  60. end graph
  61.  
  62.  
  63. set hei .5 just left
  64. amove .1 .2
  65. text four.gle
  66.