Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Which Graph/Charting Utility to use
Message
De
28/02/2004 14:21:37
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00878569
Message ID:
00881802
Vues:
32
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform