Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Which Graph/Charting Utility to use
Message
From
28/02/2004 14:21:37
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00878569
Message ID:
00881802
Views:
31
>Hi.
>Anybody got any suggestiuons as to which charting system to use with VFP8 ?
>
>I used Mocrosoft Graph years ago (Gengraph I think with FP 2.6) and it suited my purposes then.
>
>Is this still available free with VFP8.
>I dont require anything too fancy
>
>Any suggestions would be appreciated

You can create graphs directly from VFP code like:
_screen.cls
_screen.currentx=100
_screen.currenty=100
_screen.fontname='Courier New'
_screen.Print( 'Hello  '+chr(13)+ ;
'Object     Turnover   Budget '+chr(13)+ ;
'hulgi       123456     100000'+chr(13)+ ;
'ekspo         1234       1000'+chr(13)+ ;
'pood           123        100' )

for i=0 to 15
  _screen.fillcolor=rgb(255*rand(),255*rand(),255*rand())
  _screen.fillstyle=i%8
  _screen.Box(300+20*i,300,300+20*(i+1),300-300*rand())
  endfor
Andrus
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform