Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Any way to show data graphs on web.
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00289566
Message ID:
00289830
Vues:
18
>I have a foxpro com server set up that returns html and is used in an asp file. I currently made 100 pie charts (yes one for every percent) and in the returned html i show the correct one. is there a way from a fox com server to create a graph or pie chart on the fly and save it to disk as a transparent gif? Does the autograph in the foundation classes allow this? I havn't figure how to programmatically call it yet though.
>
>thanx for any help...

Let me try this again.

In addition to what Erik said, you could also draw a 1 pixel by 1 pixel graphic and save it as a GIF. Then in your HTML you can adjust the size of the 'dot' using the width/height options. For example:
<html>

<head>
<title>Sample Bar Graph</title>
</head>

<body>

<div align='left'>
  <table border='0'>
    <tr>
      <td valign='bottom'><img border='0' src='file:///c:/temp/line.gif' width='20' height='24'></td>
      <td valign='bottom'><img border='0' src='file:///C:/temp/line.gif' width='20' height=32'></td>
      <td valign='bottom'><img border='0' src='file:///C:/temp/line.gif' width='20' height='48'></td>
    </tr>
    <tr>
      <td align='center'><font face='Arial' size='1'>24</font></td>
      <td align='center'><font face='Arial' size='1'>32</font></td>
      <td align='center'><font face='Arial' size='1'>48</font></td>
    </tr>
  </table>
</div>

</body>

</html>
-Paul

RCS Solutions, Inc.
Blog
Twitter
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform