Any HTML code to display real-time data in graphs

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tvnaidu
    Contributor
    • Oct 2009
    • 365

    Any HTML code to display real-time data in graphs

    I have application which continuously reads samples and calculates current, I am looking for some html code to display those values in graphs, just like on windows, task manager shows CPU usage, just like that, I need to display these readings in graph form. thanks.
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    No HTML can do this except for the new 'canvas' element coming out in HTML5. That works in all modern browsers right now but not IE, of course.

    It is possible to do bar graphs by styling a div, for example and giving it a background color, however.

    Comment

    • tvnaidu
      Contributor
      • Oct 2009
      • 365

      #3
      bar graphs is fine, can I get some sample code, I need to hookup my read variables as input to the graph.

      currently I am reading all variables and display them on web page by refresh web page for every 2 Seconds.

      Comment

      Working...